diff --git a/env-sets/prod/services/svc-1.yaml b/env-sets/prod/services/svc-1.yaml index e69de29..2c79239 100644 --- a/env-sets/prod/services/svc-1.yaml +++ b/env-sets/prod/services/svc-1.yaml @@ -0,0 +1,9 @@ +message: "Welcome to svc-1 in prod" +image: + repository: nginx + tag: stable + pullPolicy: IfNotPresent +service: + name: svc-1 # 🟡 OPTIONAL: if your chart supports it + type: ClusterIP + port: 80 diff --git a/env-sets/prod/services/svc-2.yaml b/env-sets/prod/services/svc-2.yaml index e69de29..e1c98e0 100644 --- a/env-sets/prod/services/svc-2.yaml +++ b/env-sets/prod/services/svc-2.yaml @@ -0,0 +1,9 @@ +message: "Welcome to svc-2 in prod" +image: + repository: nginx + tag: stable + pullPolicy: IfNotPresent +service: + name: svc-2 # 🟡 OPTIONAL: if your chart supports it + type: ClusterIP + port: 80