Skip to content

Instantly share code, notes, and snippets.

@rafagsiqueira
Last active November 13, 2020 21:34
Show Gist options
  • Save rafagsiqueira/1fa213e2816c92bab4282007385b817a to your computer and use it in GitHub Desktop.
Save rafagsiqueira/1fa213e2816c92bab4282007385b817a to your computer and use it in GitHub Desktop.
Example Terraform Kubernetes deployment
resource "kubernetes_deployment" "tips-admin" {
metadata {
name = "tips-admin"
labels = {
app = "tips-admin"
}
}
spec {
replicas = 1
selector {
match_labels = {
app = "tips-admin"
}
}
template {
metadata {
labels = {
app = "tips-admin"
}
}
spec {
container {
name = "tips-admin"
image = <registry>/tips-admin:latest
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment