From 6de19cd487895a0e4b8dbec97ef7109af84a858f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Verstraeten?= Date: Tue, 29 Jul 2025 06:57:31 +0000 Subject: [PATCH 1/4] Increase sleep duration for MongoDB Helm chart installation to ensure pods are ready --- .github/workflows/k3d.yaml | 4 +--- .github/workflows/kind.yaml | 2 +- .github/workflows/microk8s.yaml | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/k3d.yaml b/.github/workflows/k3d.yaml index e2aabec..af2a6e9 100644 --- a/.github/workflows/k3d.yaml +++ b/.github/workflows/k3d.yaml @@ -1,10 +1,8 @@ name: Deploy on k3d - on: workflow_dispatch: schedule: - cron: "0 0 * * *" # This will run the workflow every day at midnight UTC - jobs: deploy: runs-on: ${{ matrix.os }} @@ -63,7 +61,7 @@ jobs: helm repo add bitnami https://charts.bitnami.com/bitnami kubectl create namespace mongodb helm install mongodb -n mongodb bitnami/mongodb --values ./base/mongodb/mongodb-values.yaml - echo "Sleeping for 250 seconds, give time for the helm chart to create the pods" && sleep 250 + echo "Sleeping for 500 seconds, give time for the helm chart to create the pods" && sleep 500 kubectl get pods -A -o wide kubectl get pods -A -o wide | grep mongodb | awk '{print $3}' | grep -q '1/1' && echo "mongodb pod is running with status 1/1" || (echo "mongodb pod is not running with status 1/1" && exit 1) - name: Install RabbitMQ diff --git a/.github/workflows/kind.yaml b/.github/workflows/kind.yaml index d4b423d..528bc44 100644 --- a/.github/workflows/kind.yaml +++ b/.github/workflows/kind.yaml @@ -61,7 +61,7 @@ jobs: helm repo add bitnami https://charts.bitnami.com/bitnami kubectl create namespace mongodb helm install mongodb -n mongodb bitnami/mongodb --values ./base/mongodb/mongodb-values.yaml - echo "Sleeping for 250 seconds, give time for the helm chart to create the pods" && sleep 250 + echo "Sleeping for 500 seconds, give time for the helm chart to create the pods" && sleep 500 kubectl get pods -A -o wide kubectl get pods -A -o wide | grep mongodb | awk '{print $3}' | grep -q '1/1' && echo "mongodb pod is running with status 1/1" || (echo "mongodb pod is not running with status 1/1" && exit 1) - name: Install RabbitMQ diff --git a/.github/workflows/microk8s.yaml b/.github/workflows/microk8s.yaml index f48493f..c569035 100644 --- a/.github/workflows/microk8s.yaml +++ b/.github/workflows/microk8s.yaml @@ -53,7 +53,7 @@ jobs: helm repo add bitnami https://charts.bitnami.com/bitnami kubectl create namespace mongodb helm install mongodb -n mongodb bitnami/mongodb --values ./base/mongodb/mongodb-values.yaml - echo "Sleeping for 250 seconds, give time for the helm chart to create the pods" && sleep 250 + echo "Sleeping for 500 seconds, give time for the helm chart to create the pods" && sleep 500 kubectl get pods -A -o wide kubectl get pods -A -o wide | grep mongodb | awk '{print $3}' | grep -q '1/1' && echo "mongodb pod is running with status 1/1" || (echo "mongodb pod is not running with status 1/1" && exit 1) - name: Install RabbitMQ From 0d68c7be84310b5f6b1311c9127d1dcfab0575c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Verstraeten?= Date: Tue, 29 Jul 2025 06:58:44 +0000 Subject: [PATCH 2/4] Refactor workflow configurations to remove deprecated OS versions for k3d, kind, and microk8s deployments --- .github/workflows/k3d.yaml | 8 ++++---- .github/workflows/kind.yaml | 4 +--- .github/workflows/microk8s.yaml | 2 +- 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/k3d.yaml b/.github/workflows/k3d.yaml index af2a6e9..f1b0e10 100644 --- a/.github/workflows/k3d.yaml +++ b/.github/workflows/k3d.yaml @@ -8,14 +8,16 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04] + os: [ubuntu-22.04, ubuntu-24.04] #k3d: [v5.5.2, v5.6.0, v5.7.5] k3d: [v5.7.5] steps: + - name: Checkout repository + uses: actions/checkout@v4 - name: "Create single cluster" uses: AbsaOSS/k3d-action@v2 with: - k3d-version: ${{ matrix.k3d }} + k3d-version: ${{ matrix.k3d }} cluster-name: "k3d-cluster" - name: Print Kubernetes Version run: | @@ -26,8 +28,6 @@ jobs: kubectl get no kubectl get pods -A -o wide kubectl get sc - - name: Checkout repository - uses: actions/checkout@v2 - name: Install OpenEBS run: | kubectl apply -f https://openebs.github.io/charts/openebs-operator.yaml diff --git a/.github/workflows/kind.yaml b/.github/workflows/kind.yaml index 528bc44..4f929cc 100644 --- a/.github/workflows/kind.yaml +++ b/.github/workflows/kind.yaml @@ -1,16 +1,14 @@ name: Deploy on kind - on: workflow_dispatch: schedule: - cron: "0 0 * * *" # This will run the workflow every day at midnight UTC - jobs: deploy: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04] + os: [ubuntu-22.04, ubuntu-24.04] #kind: [v0.21.0, v0.22.0, v0.23.0, v0.24.0, v0.25.0] kind: [v0.25.0] steps: diff --git a/.github/workflows/microk8s.yaml b/.github/workflows/microk8s.yaml index c569035..4860913 100644 --- a/.github/workflows/microk8s.yaml +++ b/.github/workflows/microk8s.yaml @@ -8,7 +8,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04] + os: [ubuntu-22.04, ubuntu-24.04] #microk8s: [1.29/stable, 1.30/stable, 1.31/stable, 1.32/stable] microk8s: [1.32/stable] steps: From 934429598b90a2e2214b852058c9a48bc344c3e6 Mon Sep 17 00:00:00 2001 From: uug4ai Date: Thu, 7 Aug 2025 07:36:50 +0000 Subject: [PATCH 3/4] A new public release - 1754552209 --- base/hub/kerberos-hub-values.yaml | 12 ++++++------ base/vault/kerberos-vault-deployment.yaml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/base/hub/kerberos-hub-values.yaml b/base/hub/kerberos-hub-values.yaml index 7bad295..50629c1 100644 --- a/base/hub/kerberos-hub-values.yaml +++ b/base/hub/kerberos-hub-values.yaml @@ -155,7 +155,7 @@ kerberoshub: api: repository: uugai/hub-api pullPolicy: IfNotPresent - tag: "v1.1.4" + tag: "v1.6.3" replicas: 1 jwtSecret: "I1JcwzW3A0t_THIS-IS_NOT_A_SECRET_WJK9jnPkipbnVTpf0efMy" # change to a random value, this is for generating JWT tokens. schema: "http" @@ -238,7 +238,7 @@ kerberoshub: frontend: repository: uugai/hub-frontend pullPolicy: IfNotPresent - tag: "v1.1.7" + tag: "v1.5.1" replicas: 1 schema: "http" url: "yourdomain.com" @@ -434,7 +434,7 @@ kerberospipeline: sequence: repository: uugai/hub-pipeline-sequence pullPolicy: IfNotPresent - tag: "v1.2.3" + tag: "v1.5.0" replicas: 1 resources: requests: @@ -458,7 +458,7 @@ kerberospipeline: notify: repository: uugai/hub-pipeline-notification pullPolicy: IfNotPresent - tag: "v1.0.13" + tag: "v1.0.16" replicas: 1 resources: requests: @@ -498,7 +498,7 @@ kerberospipeline: analysis: repository: uugai/hub-pipeline-analysis pullPolicy: IfNotPresent - tag: "v1.3.2" + tag: "v1.4.0" replicas: 1 resources: requests: @@ -522,7 +522,7 @@ kerberospipeline: thumbnail: repository: uugai/hub-pipeline-thumbnail pullPolicy: IfNotPresent - tag: "v1.1.5" + tag: "v1.1.6" replicas: 1 quality: "1" # 1 (best) - 31 (worst) width: "600" diff --git a/base/vault/kerberos-vault-deployment.yaml b/base/vault/kerberos-vault-deployment.yaml index 3d89393..501909a 100644 --- a/base/vault/kerberos-vault-deployment.yaml +++ b/base/vault/kerberos-vault-deployment.yaml @@ -24,7 +24,7 @@ spec: command: ["sh", "-c", "until nc -z mongodb.mongodb 27017 > /dev/null; do echo Waiting for master.; sleep 2; done;"] containers: - name: vault - image: uugai/vault:v1.0.16 + image: uugai/vault:v1.1.3 resources: requests: memory: 128Mi From 80fe4c20577be8a35d7b0d50b0d1ba5ddd86c0cb Mon Sep 17 00:00:00 2001 From: uug4ai Date: Thu, 4 Sep 2025 14:40:40 +0000 Subject: [PATCH 4/4] A new public release - 1756996839 --- base/hub/kerberos-hub-values.yaml | 22 +++++++++++----------- base/vault/kerberos-vault-deployment.yaml | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/base/hub/kerberos-hub-values.yaml b/base/hub/kerberos-hub-values.yaml index 50629c1..95f14c9 100644 --- a/base/hub/kerberos-hub-values.yaml +++ b/base/hub/kerberos-hub-values.yaml @@ -155,7 +155,7 @@ kerberoshub: api: repository: uugai/hub-api pullPolicy: IfNotPresent - tag: "v1.6.3" + tag: "v1.6.5" replicas: 1 jwtSecret: "I1JcwzW3A0t_THIS-IS_NOT_A_SECRET_WJK9jnPkipbnVTpf0efMy" # change to a random value, this is for generating JWT tokens. schema: "http" @@ -238,7 +238,7 @@ kerberoshub: frontend: repository: uugai/hub-frontend pullPolicy: IfNotPresent - tag: "v1.5.1" + tag: "v1.5.7" replicas: 1 schema: "http" url: "yourdomain.com" @@ -410,7 +410,7 @@ kerberospipeline: event: repository: uugai/hub-pipeline-event pullPolicy: IfNotPresent - tag: "v1.0.1" + tag: "v1.2.0" replicas: 1 resources: requests: @@ -422,7 +422,7 @@ kerberospipeline: monitor: repository: uugai/hub-pipeline-monitor pullPolicy: IfNotPresent - tag: "v1.2.1" + tag: "v1.3.3" replicas: 1 resources: requests: @@ -434,7 +434,7 @@ kerberospipeline: sequence: repository: uugai/hub-pipeline-sequence pullPolicy: IfNotPresent - tag: "v1.5.0" + tag: "v1.6.4" replicas: 1 resources: requests: @@ -446,7 +446,7 @@ kerberospipeline: throttler: repository: uugai/hub-pipeline-throttler pullPolicy: IfNotPresent - tag: "v1.1.0" + tag: "v1.2.0" replicas: 1 resources: requests: @@ -458,7 +458,7 @@ kerberospipeline: notify: repository: uugai/hub-pipeline-notification pullPolicy: IfNotPresent - tag: "v1.0.16" + tag: "v1.0.20" replicas: 1 resources: requests: @@ -498,7 +498,7 @@ kerberospipeline: analysis: repository: uugai/hub-pipeline-analysis pullPolicy: IfNotPresent - tag: "v1.4.0" + tag: "v1.6.1" replicas: 1 resources: requests: @@ -522,7 +522,7 @@ kerberospipeline: thumbnail: repository: uugai/hub-pipeline-thumbnail pullPolicy: IfNotPresent - tag: "v1.1.6" + tag: "v1.2.1" replicas: 1 quality: "1" # 1 (best) - 31 (worst) width: "600" @@ -539,7 +539,7 @@ kerberospipeline: counting: repository: uugai/hub-pipeline-counting pullPolicy: IfNotPresent - tag: "v1.6.0" + tag: "v1.6.2" replicas: 1 resources: requests: @@ -549,7 +549,7 @@ kerberospipeline: enabled: true # Enable or disable the sprite generation 'true' or 'false repository: uugai/hub-pipeline-sprite pullPolicy: IfNotPresent - tag: "v1.0.4" + tag: "v1.0.7" replicas: 1 interval: "1" # Number of secondes between each thumbnail in the sprite width: "240" # Should not be changed for the moment (hard coded in UI) diff --git a/base/vault/kerberos-vault-deployment.yaml b/base/vault/kerberos-vault-deployment.yaml index 501909a..2b97bbb 100644 --- a/base/vault/kerberos-vault-deployment.yaml +++ b/base/vault/kerberos-vault-deployment.yaml @@ -24,7 +24,7 @@ spec: command: ["sh", "-c", "until nc -z mongodb.mongodb 27017 > /dev/null; do echo Waiting for master.; sleep 2; done;"] containers: - name: vault - image: uugai/vault:v1.1.3 + image: uugai/vault:v1.1.6 resources: requests: memory: 128Mi