remove proxy

This commit is contained in:
2025-01-20 14:19:03 +01:00
parent 3a91deff1a
commit 2b83210de0
4 changed files with 6 additions and 4 deletions

View File

@@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- proxy
# - proxy
- external-controller.yaml
- external-policy.yaml
- service.yaml

View File

@@ -5,7 +5,7 @@ kind: Service
metadata:
name: nginx-internal
spec:
type: ClusterIP
type: LoadBalancer
selector:
app.kubernetes.io/name: nginx-internal
ports:
@@ -15,3 +15,4 @@ spec:
- name: https
port: 443
targetPort: 443
loadBalancerIP: 192.168.0.201

View File

@@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- proxy
# - proxy
- internal-controller.yaml
- internal-policy.yaml
- service.yaml

View File

@@ -4,7 +4,7 @@ kind: Service
metadata:
name: nginx-external
spec:
type: ClusterIP
type: LoadBalancer
selector:
app.kubernetes.io/name: nginx-external
ports:
@@ -14,3 +14,4 @@ spec:
- name: https
port: 443
targetPort: 443
loadBalancerIP: 192.168.0.202