Fix the cilium stuff multiple ways
Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
This commit is contained in:
parent
f87fd7566d
commit
ae9d5ddba3
|
@ -6,10 +6,3 @@ metadata:
|
||||||
name: argocd-cm
|
name: argocd-cm
|
||||||
data:
|
data:
|
||||||
kustomize.buildOptions: --enable-helm
|
kustomize.buildOptions: --enable-helm
|
||||||
resource.exclusions: |
|
|
||||||
- apiGroups:
|
|
||||||
- cilium.io
|
|
||||||
kinds:
|
|
||||||
- CiliumIdentity
|
|
||||||
clusters:
|
|
||||||
- "*"
|
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/part-of: argocd
|
||||||
|
name: argocd-cm
|
||||||
|
data:
|
||||||
|
resource.exclusions: |
|
||||||
|
- apiGroups:
|
||||||
|
- cilium.io
|
||||||
|
kinds:
|
||||||
|
- CiliumIdentity
|
||||||
|
clusters:
|
||||||
|
- "*"
|
|
@ -7,3 +7,20 @@ resources:
|
||||||
patchesStrategicMerge:
|
patchesStrategicMerge:
|
||||||
- argocd-cm.yaml
|
- argocd-cm.yaml
|
||||||
- service.yaml
|
- service.yaml
|
||||||
|
|
||||||
|
patches:
|
||||||
|
- patch: |-
|
||||||
|
- op: add
|
||||||
|
path: /data
|
||||||
|
value:
|
||||||
|
resource.exclusions: |
|
||||||
|
- apiGroups:
|
||||||
|
- cilium.io
|
||||||
|
kinds:
|
||||||
|
- CiliumIdentity
|
||||||
|
clusters:
|
||||||
|
- "*"
|
||||||
|
target:
|
||||||
|
version: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
name: argocd-cm
|
||||||
|
|
|
@ -4,6 +4,12 @@ metadata:
|
||||||
name: apps
|
name: apps
|
||||||
namespace: argocd
|
namespace: argocd
|
||||||
spec:
|
spec:
|
||||||
|
clusterResourceBlacklist:
|
||||||
|
- group: "*"
|
||||||
|
kind: "*"
|
||||||
|
clusterResourceBlacklist:
|
||||||
|
- group: cilium.io
|
||||||
|
kind: CiliumIdentity
|
||||||
description: everything non-infra
|
description: everything non-infra
|
||||||
sourceRepos:
|
sourceRepos:
|
||||||
- https://git.martyn.berlin/martyn/infra4talos.git
|
- https://git.martyn.berlin/martyn/infra4talos.git
|
||||||
|
|
Loading…
Reference in New Issue