Last active
November 13, 2020 21:34
-
-
Save rafagsiqueira/1fa213e2816c92bab4282007385b817a to your computer and use it in GitHub Desktop.
Example Terraform Kubernetes deployment
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
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