@@ -26,17 +26,44 @@ platformClusterKubeconfigSecretName: "platform-kubeconfig"
2626resources files:
2727
2828``` yaml
29+ # The information for the git repo
2930git :
30- repoUrl : " " # The url to the github gitops repository
31- mainBranch : " " # The main branch of the gitops repository (most of the time, set it to 'main')
31+ repoUrl : " "
32+ mainBranch : " "
33+
34+ # Image pull secrets to be added to all deployments
35+ imagePullSecrets : []
36+ # - name: my-registry-secret
37+
38+ # Image replacement variables
39+ # You can either specify a prefix which is put in front of xxx-controller or directly specify the images
40+ images :
41+ prefix : " ghcr.io/openmcp-project/fluxcd"
42+ sourceController :
43+ image : " ghcr.io/fluxcd/source-controller"
44+ tag : " latest" # optional
45+ digest : " " # optional
46+ notificationController :
47+ image : " ghcr.io/fluxcd/notification-controller"
48+ kustomizeController :
49+ image : " ghcr.io/fluxcd/kustomize-controller"
50+ helmController :
51+ image : " ghcr.io/fluxcd/helm-controller"
52+ imageReflectorController :
53+ image : " ghcr.io/fluxcd/image-reflector-controller"
54+ imageAutomationController :
55+ image : " ghcr.io/fluxcd/image-automation-controller"
3256` ` `
3357
3458When rendering the ` overlays` files, the following values are used:
3559
3660` ` ` yaml
37- fluxCDResourcesPath: "" # The path were the fluxcd resources are lying relative to the overlays
38- gitRepoEnvBranch: "" # The branch for this environment to look at
39- envPathFluxSystem: "" # The path were the env overlays are located at from the root of the git repo
61+ # Path from the overlays folder to the resources folder of fluxcd (e.g. ../../../resources/fluxcd)
62+ fluxCDResourcesPath: ""
63+ # Path to the env fluxCD folder (e.g. envs/%ENV%/fluxcd)
64+ fluxCDEnvPath: ""
65+ # branch of the env (e.g. dev)
66+ gitRepoEnvBranch: ""
4067` ` `
4168
4269# ## OpenMCP
0 commit comments