Skip to content

Commit c970b40

Browse files
authored
Update organization name and fix bitnami repo link (#54)
* fix: use new organization name `actinia-org` * fix: use legacy bitnami repo * chore: update redis to 17.9.5 and chart versions * chore: update redis documentation * chore: update docs * fix: use newer k8s versions
1 parent d9e1aa2 commit c970b40

File tree

11 files changed

+34
-35
lines changed

11 files changed

+34
-35
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ jobs:
3535
strategy:
3636
matrix:
3737
k8s:
38-
- v1.12.10
39-
- v1.13.12
40-
- v1.14.10
41-
- v1.15.11
42-
- v1.16.8
43-
- v1.17.4
38+
- v1.22.17
39+
- v1.23.17
40+
- v1.24.13
41+
- v1.25.8
42+
- v1.26.3
43+
- v1.27.0
4444
steps:
4545
- name: Checkout
4646
uses: actions/checkout@v1

README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# helm-charts
22

3-
## mundialis helm repo
3+
## actinia-org helm repo
44

5-
helm repo add mundialis https://mundialis.github.io/helm-charts/
5+
helm repo add actinia-org https://actinia-org.github.io/helm-charts/
66
helm repo update
7-
helm search repo mundialis -l
7+
helm search repo actinia-org -l
88

99
## commit changes to chart
1010
GitHub Actions for linting:
@@ -19,18 +19,17 @@ a release is made for each chart in case the chart version was changed.
1919
## examples
2020

2121
### prerequisites
22-
helm repo add mundialis https://mundialis.github.io/helm-charts/
22+
helm repo add actinia-org https://actinia-org.github.io/helm-charts/
2323
helm repo update
2424

2525
### install actinia with default values
26-
helm upgrade --install actinia mundialis/actinia
26+
helm upgrade --install actinia actinia-org/actinia
2727

2828
### install actinia with persistence
29-
helm upgrade --install actinia mundialis/actinia --set "persistence.enabled=true" --set "redis.master.persistence.enabled=true"
29+
helm upgrade --install actinia actinia-org/actinia --set "persistence.enabled=true" --set "redis.master.persistence.enabled=true"
3030

3131
### install actinia with ingress enabled
32-
helm upgrade --install actinia mundialis/actinia --set "ingress.enabled=true"
33-
32+
helm upgrade --install actinia actinia-org/actinia --set "ingress.enabled=true"
3433

3534
# Local testing
3635

@@ -48,4 +47,4 @@ Make you local changes and then run e.g.
4847
helm package -u charts/*
4948
# or only build a single chart
5049
helm package -u charts/openeo-grassgis-driver/
51-
helm repo index --url https://mundialis.github.io/helm-charts/ .
50+
helm repo index --url https://actinia-org.github.io/helm-charts/ .

charts/actinia/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ type: application
1414

1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
17-
version: 2.2.3
17+
version: 2.2.4
1818

1919
# This is the version number of the application being deployed. This version number should be
2020
# incremented each time you make changes to the application.
2121
appVersion: 2.2.2
2222

2323
dependencies:
2424
- name: redis
25-
version: "12"
26-
repository: "https://charts.bitnami.com/bitnami"
25+
version: "17.9.5"
26+
repository: "https://charts.bitnami.com/bitnami"

charts/actinia/helmdocs.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ actinia
22
=======
33
A Helm chart for actinia
44

5-
Current chart version is `2.2.3`
5+
Current chart version is `2.2.4`
66

77

88

99
## Chart Requirements
1010

1111
| Repository | Name | Version |
1212
|------------|------|---------|
13-
| https://charts.bitnami.com/bitnami | redis | 12 |
13+
| https://charts.bitnami.com/bitnami | redis | 17.9.5 |
1414

1515
## Chart Values
1616

@@ -25,7 +25,7 @@ Current chart version is `2.2.3`
2525
| config.redis | object | `{}` | |
2626
| fullnameOverride | string | `""` | |
2727
| image.pullPolicy | string | `"IfNotPresent"` | |
28-
| image.repository | string | `"mundialis/actinia"` | |
28+
| image.repository | string | `"actinia-org/actinia"` | |
2929
| imagePullSecrets | list | `[]` | |
3030
| ingress.annotations | object | `{}` | |
3131
| ingress.enabled | bool | `false` | |
@@ -54,7 +54,7 @@ Current chart version is `2.2.3`
5454
| persistence.userdata.storageClassName | string | `"default"` | |
5555
| persistence.userdata.storageSize | string | `"10Gi"` | |
5656
| podSecurityContext | object | `{}` | |
57-
| redis.cluster.enabled | bool | `false` | |
57+
| redis.architecture | string | `"standalone"` | |
5858
| redis.master.persistence.enabled | bool | `false` | |
5959
| replicaCount | int | `1` | |
6060
| resources | object | `{}` | |

charts/actinia/values.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
replicaCount: 1
66

77
image:
8-
repository: mundialis/actinia
8+
repository: actinia-org/actinia
99
pullPolicy: IfNotPresent
1010

1111
imagePullSecrets: []
@@ -118,11 +118,11 @@ config:
118118
#port: 6379
119119
#password: password
120120

121-
# https://github.com/bitnami/charts/tree/master/bitnami/redis
121+
# https://github.com/bitnami/charts/tree/main/bitnami/redis
122122
redis:
123-
#password: password
124-
cluster:
125-
enabled: false
123+
# auth:
124+
# password: password
125+
architecture: standalone
126126
master:
127127
persistence:
128128
enabled: false

charts/openeo-grassgis-driver/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ type: application
1414

1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
17-
version: 0.2.31
17+
version: 0.2.32
1818

1919
# This is the version number of the application being deployed. This version number should be
2020
# incremented each time you make changes to the application.

charts/openeo-grassgis-driver/helmdocs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ openeo-grassgis-driver
22
======================
33
A Helm chart for openeo-grassgis-driver
44

5-
Current chart version is `0.2.31`
5+
Current chart version is `0.2.32`
66

77

88

@@ -17,7 +17,7 @@ Current chart version is `0.2.31`
1717
| config.actinia_version | string | `"v3"` | |
1818
| fullnameOverride | string | `""` | |
1919
| image.pullPolicy | string | `"IfNotPresent"` | |
20-
| image.repository | string | `"mundialis/openeo-grassgis-driver"` | |
20+
| image.repository | string | `"actinia-org/openeo-grassgis-driver"` | |
2121
| imagePullSecrets | list | `[]` | |
2222
| ingress.annotations | object | `{}` | |
2323
| ingress.enabled | bool | `false` | |

charts/openeo-grassgis-driver/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
replicaCount: 1
66

77
image:
8-
repository: mundialis/openeo-grassgis-driver
8+
repository: actinia-org/openeo-grassgis-driver
99
pullPolicy: IfNotPresent
1010

1111
config:

charts/openeo-web-editor/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.1.2
18+
version: 0.1.3
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/openeo-web-editor/helmdocs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ openeo-web-editor
22
=================
33
A Helm chart for openeo-web-editor
44

5-
Current chart version is `0.1.2`
5+
Current chart version is `0.1.3`
66

77

88

@@ -19,7 +19,7 @@ Current chart version is `0.1.2`
1919
| autoscaling.targetCPUUtilizationPercentage | int | `80` | |
2020
| fullnameOverride | string | `""` | |
2121
| image.pullPolicy | string | `"Always"` | |
22-
| image.repository | string | `"mundialis/openeo-web-editor"` | |
22+
| image.repository | string | `"actinia-org/openeo-web-editor"` | |
2323
| imagePullSecrets | list | `[]` | |
2424
| ingress.annotations | object | `{}` | |
2525
| ingress.className | string | `""` | |

0 commit comments

Comments
 (0)