Skip to content

Commit 927bbae

Browse files
authored
Upgrade NATS, Support ArgoCD (#19)
This change updates the chart to use the latest NATS release as at time of update (1.1.5) and adds the requisite annotations for rolling out on ArgoCD.
1 parent c4945e9 commit 927bbae

32 files changed

+83
-19
lines changed

helm/featurehub/Chart.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ dependencies:
44
version: 12.1.13
55
- name: nats
66
repository: https://nats-io.github.io/k8s/helm/charts/
7-
version: 0.19.6
8-
digest: sha256:0043774333081bf7b7d2d02e1b2b67dc47e5952cfec9ccca6fbd3c5f6628bf81
9-
generated: "2023-02-02T16:29:07.370334+13:00"
7+
version: 1.1.5
8+
digest: sha256:d7b5fc428158252438bc3131fc272bee5cd68e9ecf370a6da6ddd82e31d8a17a
9+
generated: "2023-12-08T18:11:13.778337+13:00"

helm/featurehub/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: featurehub
33
description: FeatureHub Release
44
type: application
5-
version: 4.0.8
5+
version: 4.0.9
66
icon: https://raw.githubusercontent.com/featurehub-io/featurehub/main/docs/modules/ROOT/images/fh_icon.png
77
appVersion: "1.7.0"
88
maintainers:
@@ -14,6 +14,6 @@ dependencies:
1414
repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami
1515
condition: postgresql.enabled
1616
- name: nats
17-
version: 0.19.6
17+
version: 1.1.5
1818
repository: https://nats-io.github.io/k8s/helm/charts/
1919
condition: nats.enabled

helm/featurehub/README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# featurehub
22

3-
![Version: 4.0.8](https://img.shields.io/badge/Version-4.0.8-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.7.0](https://img.shields.io/badge/AppVersion-1.7.0-informational?style=flat-square)
3+
![Version: 4.0.9](https://img.shields.io/badge/Version-4.0.9-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.7.0](https://img.shields.io/badge/AppVersion-1.7.0-informational?style=flat-square)
44

55
FeatureHub Release
66

@@ -14,7 +14,7 @@ FeatureHub Release
1414

1515
| Repository | Name | Version |
1616
|------------|------|---------|
17-
| https://nats-io.github.io/k8s/helm/charts/ | nats | 0.19.6 |
17+
| https://nats-io.github.io/k8s/helm/charts/ | nats | 1.1.5 |
1818
| https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami | postgresql | 12.1.13 |
1919

2020
## Values
@@ -53,6 +53,7 @@ FeatureHub Release
5353
| dacha.securityContext.runAsUser | int | `999` | |
5454
| dacha.serviceAccount.annotations | object | `{}` | |
5555
| dacha.serviceAccount.create | bool | `true` | |
56+
| dacha.serviceAccount.labels | object | `{}` | |
5657
| dacha.serviceAccount.name | string | `""` | |
5758
| dacha.strategy | object | `{}` | |
5859
| dacha.tolerations | list | `[]` | |
@@ -88,6 +89,7 @@ FeatureHub Release
8889
| edge.securityContext.runAsUser | int | `999` | |
8990
| edge.serviceAccount.annotations | object | `{}` | |
9091
| edge.serviceAccount.create | bool | `true` | |
92+
| edge.serviceAccount.labels | object | `{}` | |
9193
| edge.serviceAccount.name | string | `""` | |
9294
| edge.strategy | object | `{}` | |
9395
| edge.tolerations | list | `[]` | |
@@ -138,6 +140,7 @@ FeatureHub Release
138140
| managementRepository.securityContext.runAsUser | int | `999` | |
139141
| managementRepository.serviceAccount.annotations | object | `{}` | |
140142
| managementRepository.serviceAccount.create | bool | `true` | |
143+
| managementRepository.serviceAccount.labels | object | `{}` | |
141144
| managementRepository.serviceAccount.name | string | `""` | |
142145
| managementRepository.strategy | object | `{}` | |
143146
| managementRepository.tolerations | list | `[]` | |

helm/featurehub/templates/common/configmap-global-common-config-extra.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ apiVersion: v1
55
kind: ConfigMap
66
metadata:
77
name: {{ include "featurehub.fullname" . }}-global-extra-{{ $cm.configMapSuffix }}
8+
annotations:
9+
argocd.argoproj.io/sync-wave: "1"
810
labels:
911
{{- include "featurehub.managementRepository.labels" . | nindent 4 }}
1012
data:

helm/featurehub/templates/common/configmap-global-common-config.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ apiVersion: v1
33
kind: ConfigMap
44
metadata:
55
name: {{ include "featurehub.fullname" . }}-global-common-config
6+
annotations:
7+
argocd.argoproj.io/sync-wave: "1"
68
labels:
79
{{- include "featurehub.managementRepository.labels" . | nindent 4 }}
810
data:

helm/featurehub/templates/common/configmap-global-common-env.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ apiVersion: v1
33
kind: ConfigMap
44
metadata:
55
name: {{ include "featurehub.fullname" . }}-global-common-env
6+
annotations:
7+
argocd.argoproj.io/sync-wave: "1"
68
labels:
79
{{- include "featurehub.managementRepository.labels" . | nindent 4 }}
810
data:

helm/featurehub/templates/dacha/configmap-app-config.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ apiVersion: v1
44
kind: ConfigMap
55
metadata:
66
name: {{ include "featurehub.fullname" . }}-dacha-app-config
7+
annotations:
8+
argocd.argoproj.io/sync-wave: "1"
79
labels:
810
{{- include "featurehub.dacha.labels" . | nindent 4 }}
911
data:

helm/featurehub/templates/dacha/configmap-env.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ apiVersion: v1
33
kind: ConfigMap
44
metadata:
55
name: {{ include "featurehub.fullname" . }}-dacha-env
6+
annotations:
7+
argocd.argoproj.io/sync-wave: "1"
68
labels:
79
{{- include "featurehub.dacha.labels" . | nindent 4 }}
810
data:

helm/featurehub/templates/dacha/deployment.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ apiVersion: apps/v1
33
kind: Deployment
44
metadata:
55
name: {{ include "featurehub.dacha.name" . }}
6+
annotations:
7+
argocd.argoproj.io/sync-wave: "20"
68
labels:
79
{{- include "featurehub.dacha.labels" . | nindent 4 }}
810
spec:

helm/featurehub/templates/dacha/ingress.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ metadata:
1818
name: {{ include "featurehub.dacha.name" . }}
1919
labels:
2020
{{- include "featurehub.dacha.labels" . | nindent 4 }}
21-
{{- with .Values.dacha.ingress.annotations }}
2221
annotations:
22+
argocd.argoproj.io/sync-wave: "25"
23+
{{- with .Values.dacha.ingress.annotations }}
2324
{{- toYaml . | nindent 4 }}
2425
{{- end }}
2526
spec:

0 commit comments

Comments
 (0)