Skip to content

Instantly share code, notes, and snippets.

@khushi20218
Created September 6, 2020 14:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save khushi20218/8ab6758ecfd3125439fbae35c26b2c01 to your computer and use it in GitHub Desktop.
Save khushi20218/8ab6758ecfd3125439fbae35c26b2c01 to your computer and use it in GitHub Desktop.
#service
resource "kubernetes_service" "wp_service" {
depends_on = [
kubernetes_deployment.wp_deploy,
]
metadata {
name = "wp-service"
}
spec {
selector = {
app = "wordpress"
}
port {
port = 80
target_port = 80
node_port = 31002
}
type = "NodePort"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment