diff --git a/clusters/my-cluster/argocd/kustomization.yaml b/clusters/my-cluster/argocd/kustomization.yaml new file mode 100644 index 0000000..35374ed --- /dev/null +++ b/clusters/my-cluster/argocd/kustomization.yaml @@ -0,0 +1,18 @@ +--- +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization +namespace: argocd +resources: + - namespace.yaml + - https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml +patches: + - patch: | + apiVersion: v1 + kind: Service + metadata: + name: argocd-server + spec: + type: LoadBalancer + target: + kind: Service + labelSelector: app.kubernetes.io/name=argocd-server diff --git a/clusters/my-cluster/argocd/namespace.yaml b/clusters/my-cluster/argocd/namespace.yaml new file mode 100644 index 0000000..42add95 --- /dev/null +++ b/clusters/my-cluster/argocd/namespace.yaml @@ -0,0 +1,5 @@ +--- +apiVersion: v1 +kind: Namespace +metadata: + name: argocd