26 lines
591 B
YAML
26 lines
591 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
namespace: argocd
|
|
|
|
resources:
|
|
- install.yaml
|
|
|
|
patches:
|
|
- target:
|
|
kind: ConfigMap
|
|
name: argocd-image-updater-config
|
|
patch: |-
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: argocd-image-updater-config
|
|
data:
|
|
registries.conf: |
|
|
registries:
|
|
- name: Codeberg Registry
|
|
api_url: https://codeberg.org
|
|
prefix: codeberg.org
|
|
ping: yes
|
|
credentials: pullsecret:argocd/forgejo-registry
|
|
default: true
|