-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwaypoint.hcl
More file actions
45 lines (43 loc) · 931 Bytes
/
waypoint.hcl
File metadata and controls
45 lines (43 loc) · 931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
project = "titanic"
app "api" {
path = "./services/api.nodejs"
labels = {
"service" = "example-nodejs",
"env" = "dev"
}
# runner {
# profile = "docker-codelabs-dev"
# }
build {
use "pack" {}
# use "docker" {}
# registry {
# use "docker" {
# //The following field was skipped during file generation
# image = ""
# //The following field was skipped during file generation
# tag = ""
# }
# }
}
deploy {
use "docker" {}
# use "kubernetes" {
# pod {
# container = "k8s.Container"
# //The following field was skipped during file generation
# security_context = ""
# //The following field was skipped during file generation
# sidecar = ""
# }
# }
}
release {
use "kubernetes" {
ingress {
//The following field was skipped during file generation
tls = ""
}
}
}
}