first commit
This commit is contained in:
21
apps/traefik-ui/svc.tf
Normal file
21
apps/traefik-ui/svc.tf
Normal file
@@ -0,0 +1,21 @@
|
||||
resource "kubectl_manifest" "service" {
|
||||
yaml_body = <<-EOF
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: "${var.component}-${var.instance}"
|
||||
namespace: "${var.namespace}"
|
||||
labels: ${jsonencode(local.common-labels)}
|
||||
spec:
|
||||
type: ClusterIP
|
||||
ports:
|
||||
- name: http
|
||||
port: 80
|
||||
protocol: TCP
|
||||
targetPort: 9000
|
||||
selector:
|
||||
vynil.solidite.fr/owner-namespace: ${var.namespace}
|
||||
vynil.solidite.fr/owner-component: traefik
|
||||
vynil.solidite.fr/owner-category: share
|
||||
EOF
|
||||
}
|
||||
Reference in New Issue
Block a user