update indentation

This commit is contained in:
2026-02-04 13:51:48 -07:00
parent fc7f977ab5
commit af15c9715b
6 changed files with 45 additions and 45 deletions

View File

@@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- web/deployment.yaml
- web/ingress.yaml
- web/service.yaml
- web/web-backend-tls.yaml
- web/deployment.yaml
- web/ingress.yaml
- web/service.yaml
- web/web-backend-tls.yaml

View File

@@ -15,21 +15,21 @@ spec:
app: web
spec:
containers:
- name: web
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
memory: 512Mi
ports:
- containerPort: 443
protocol: TCP
name: https
volumeMounts:
- mountPath: /tls
name: web-backend-tls
- name: web
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
memory: 512Mi
ports:
- containerPort: 443
protocol: TCP
name: https
volumeMounts:
- mountPath: /tls
name: web-backend-tls
volumes:
- name: web-backend-tls
secret:
secretName: web-backend-tls
- name: web-backend-tls
secret:
secretName: web-backend-tls

View File

@@ -4,10 +4,10 @@ metadata:
name: web
spec:
ports:
- name: https
port: 443
protocol: TCP
targetPort: 443
- name: https
port: 443
protocol: TCP
targetPort: 443
selector:
app: web
type: ClusterIP