diff --git a/README.md b/README.md index 5cbb353..f14c907 100644 --- a/README.md +++ b/README.md @@ -307,3 +307,14 @@ what we need. * Need to have one or more services to map IPv4 * Maybe outside haproxy w/ generic ssl/sni/host mapping * Could even be **inside** haproxy service + +## Flux + Chartmuseum + +* For automatic deployments, we can use flux +* To be able to use flux with our charts, we need a Chartmuseum +* To access a private chartmuseum, we need a shared secret +* Thus we probably do need sops or similar + +-alternative- + +* Using kustomize, local resources can be used diff --git a/apps/gitea/Chart.yaml b/apps/gitea/Chart.yaml index 9594a2b..95096c3 100644 --- a/apps/gitea/Chart.yaml +++ b/apps/gitea/Chart.yaml @@ -21,4 +21,4 @@ version: 0.2.0 # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "1.14" +appVersion: "1.14.5" diff --git a/apps/gitea/templates/deployment.yaml b/apps/gitea/templates/deployment.yaml index ca293c1..1712368 100644 --- a/apps/gitea/templates/deployment.yaml +++ b/apps/gitea/templates/deployment.yaml @@ -48,7 +48,7 @@ spec: mountPath: "/var/lib/postgresql/data" subPath: postgres - name: gitea - image: gitea/gitea:1.14 + image: gitea/gitea:{{ .Chart.AppVersion }} ports: - containerPort: 22 - containerPort: 3000