Skip to content

Commit dcff7a6

Browse files
committed
fix: use free bitnamilegacy images instead of paid commercial bitnami
Signed-off-by: Amro Misbah <amromisba7@gmail.com>
1 parent 7339320 commit dcff7a6

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

automation/startflexdemo.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ fi
6565
PERSISTENCE_TYPE="sql"
6666
if [[ $GLUU_PERSISTENCE == "MYSQL" ]]; then
6767
sudo microk8s.kubectl get po --kubeconfig="$KUBECONFIG"
68-
sudo helm install my-release --set auth.rootPassword=Test1234#,auth.database=gluu -n gluu oci://registry-1.docker.io/bitnamicharts/mysql --kubeconfig="$KUBECONFIG"
68+
sudo helm install my-release --set auth.rootPassword=Test1234#,auth.database=gluu,image.repository=bitnamilegacy/mysql,image.tag=9.4.0-debian-12-r1 -n gluu oci://registry-1.docker.io/bitnamicharts/mysql --kubeconfig="$KUBECONFIG"
6969
cat << EOF > override.yaml
7070
config:
7171
countryCode: US
@@ -84,7 +84,7 @@ EOF
8484
fi
8585
if [[ $GLUU_PERSISTENCE == "PGSQL" ]]; then
8686
sudo microk8s.kubectl get po --kubeconfig="$KUBECONFIG"
87-
sudo helm install my-release --set auth.postgresPassword=Test1234#,auth.database=gluu -n gluu oci://registry-1.docker.io/bitnamicharts/postgresql --kubeconfig="$KUBECONFIG"
87+
sudo helm install my-release --set auth.postgresPassword=Test1234#,auth.database=gluu,image.repository=bitnamilegacy/postgresql,image.tag=16.4.0-debian-12-r0 -n gluu oci://registry-1.docker.io/bitnamicharts/postgresql --kubeconfig="$KUBECONFIG"
8888
cat << EOF > override.yaml
8989
config:
9090
countryCode: US

automation/startopenabankingdemo.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ KUBECONFIG="$PWD"/config
2121
sudo microk8s.kubectl create namespace gluu --kubeconfig="$KUBECONFIG" || echo "namespace exists"
2222
sudo helm repo add bitnami https://charts.bitnami.com/bitnami
2323
sudo microk8s.kubectl get po --kubeconfig="$KUBECONFIG"
24-
sudo helm install my-release --set auth.rootPassword=Test1234#,auth.database=gluu -n gluu oci://registry-1.docker.io/bitnamicharts/mysql --kubeconfig="$KUBECONFIG"
24+
sudo helm install my-release --set auth.rootPassword=Test1234#,auth.database=gluu,image.repository=bitnamilegacy/mysql,image.tag=9.4.0-debian-12-r1 -n gluu oci://registry-1.docker.io/bitnamicharts/mysql --kubeconfig="$KUBECONFIG"
2525
EXT_IP=$(curl ipinfo.io/ip)
2626
sudo echo "$EXT_IP $GLUU_FQDN" >> /etc/hosts
2727
cat << EOF > override.yaml

docs/admin/recipes/getting-started-rancher.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ kubectl get secret cn -o json -n <namespace>
197197
- Pass in a custom password for the database. Here we used `Test1234#`. The admin user will be left as `root`. Notice we are installing in the `gluu` namespace. Run
198198
199199
```
200-
helm install my-release --set auth.rootPassword=Test1234#,auth.database=jans bitnami/mysql -n gluu
200+
helm install my-release --set auth.rootPassword=Test1234#,auth.database=gluu,image.repository=bitnamilegacy/mysql,image.tag=9.4.0-debian-12-r1 -n gluu oci://registry-1.docker.io/bitnamicharts/mysql
201201
```
202202
203203
### Successful Installation

docs/install/helm-install/amazon-eks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ tags:
105105
For testing purposes, you can deploy it on the EKS cluster using the following command:
106106
107107
```
108-
helm install my-release --set auth.postgresPassword=Test1234#,auth.database=gluu -n gluu oci://registry-1.docker.io/bitnamicharts/postgresql
108+
helm install my-release --set auth.postgresPassword=Test1234#,auth.database=gluu,image.repository=bitnamilegacy/postgresql,image.tag=16.4.0-debian-12-r0 -n gluu oci://registry-1.docker.io/bitnamicharts/postgresql
109109
```
110110
111111
Add the following yaml snippet to your `override.yaml` file:
@@ -132,7 +132,7 @@ tags:
132132
For testing purposes, you can deploy it on the EKS cluster using the following command:
133133
134134
```
135-
helm install my-release --set auth.rootPassword=Test1234#,auth.database=gluu -n gluu oci://registry-1.docker.io/bitnamicharts/mysql
135+
helm install my-release --set auth.rootPassword=Test1234#,auth.database=gluu,image.repository=bitnamilegacy/mysql,image.tag=9.4.0-debian-12-r1 -n gluu oci://registry-1.docker.io/bitnamicharts/mysql
136136
```
137137
138138
Add the following yaml snippet to your `override.yaml` file:

docs/install/helm-install/google-gke.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ tags:
9898
For testing purposes, you can deploy it on the GKE cluster using the following command:
9999
100100
```
101-
helm install my-release --set auth.postgresPassword=Test1234#,auth.database=gluu -n gluu oci://registry-1.docker.io/bitnamicharts/postgresql
101+
helm install my-release --set auth.postgresPassword=Test1234#,auth.database=gluu,image.repository=bitnamilegacy/postgresql,image.tag=16.4.0-debian-12-r0 -n gluu oci://registry-1.docker.io/bitnamicharts/postgresql
102102
```
103103
104104
Add the following yaml snippet to your `override.yaml` file:
@@ -125,7 +125,7 @@ tags:
125125
For testing purposes, you can deploy it on the GKE cluster using the following command:
126126
127127
```
128-
helm install my-release --set auth.rootPassword=Test1234#,auth.database=gluu -n gluu oci://registry-1.docker.io/bitnamicharts/mysql
128+
helm install my-release --set auth.rootPassword=Test1234#,auth.database=gluu,image.repository=bitnamilegacy/mysql,image.tag=9.4.0-debian-12-r1 -n gluu oci://registry-1.docker.io/bitnamicharts/mysql
129129
```
130130
131131
Add the following yaml snippet to your `override.yaml` file:

docs/install/helm-install/microsoft-azure.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ tags:
102102
For testing purposes, you can deploy it on the AKS cluster using the following command:
103103
104104
```
105-
helm install my-release --set auth.postgresPassword=Test1234#,auth.database=gluu -n gluu oci://registry-1.docker.io/bitnamicharts/postgresql
105+
helm install my-release --set auth.postgresPassword=Test1234#,auth.database=gluu,image.repository=bitnamilegacy/postgresql,image.tag=16.4.0-debian-12-r0 -n gluu oci://registry-1.docker.io/bitnamicharts/postgresql
106106
```
107107
108108
Add the following yaml snippet to your `override.yaml` file:
@@ -130,7 +130,7 @@ tags:
130130
For testing purposes, you can deploy it on the AKS cluster using the following command:
131131
132132
```
133-
helm install my-release --set auth.rootPassword=Test1234#,auth.database=gluu -n gluu oci://registry-1.docker.io/bitnamicharts/mysql
133+
helm install my-release --set auth.rootPassword=Test1234#,auth.database=gluu,image.repository=bitnamilegacy/mysql,image.tag=9.4.0-debian-12-r1 -n gluu oci://registry-1.docker.io/bitnamicharts/mysql
134134
```
135135
136136
Add the following yaml snippet to your `override.yaml` file:

0 commit comments

Comments
 (0)