Created
April 23, 2022 09:06
-
-
Save Havoc24k/1e1eea69dd7daaf5db5affd7ca5caaed to your computer and use it in GitHub Desktop.
waypoint.deploy.hcl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
deploy { | |
use "kubernetes" { | |
probe_path = "/healthz" | |
// Required for private container registry | |
// image_secret = "secretname" | |
pod { | |
container { | |
port { | |
name = "http" | |
port = 8080 | |
} | |
port { | |
name = "grpc" | |
port = 50051 | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment