28 lines
562 B
YAML
28 lines
562 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
resources:
|
|
- install.yaml
|
|
namespace: argocd
|
|
patches:
|
|
- target:
|
|
kind: Service
|
|
name: argocd-server
|
|
patch: |-
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: argocd-server
|
|
spec:
|
|
type: NodePort
|
|
ports:
|
|
- name: http
|
|
port: 80
|
|
protocol: TCP
|
|
targetPort: 8080
|
|
nodePort: 30080
|
|
- name: https
|
|
port: 443
|
|
protocol: TCP
|
|
targetPort: 8080
|
|
nodePort: 30443
|