From bdd07d3936349655577ffb377cdf9b0adcb925fe Mon Sep 17 00:00:00 2001
From: Cedric Verstraeten <cverstraeten@uug.ai>
Date: Mon, 2 Dec 2024 11:33:00 +0100
Subject: [PATCH 1/2] missed some namespaces

---
 charts/hub/templates/kerberos-hub/hub-api.yaml                 | 2 ++
 charts/hub/templates/kerberos-hub/hub-frontend-demo.yaml       | 2 ++
 charts/hub/templates/kerberos-hub/hub-frontend.yaml            | 2 ++
 charts/hub/templates/kerberos-pipeline/pipe-analysis.yaml      | 3 ++-
 charts/hub/templates/kerberos-pipeline/pipe-counting.yaml      | 3 ++-
 charts/hub/templates/kerberos-pipeline/pipe-dominantcolor.yaml | 3 ++-
 charts/hub/templates/kerberos-pipeline/pipe-event.yaml         | 3 ++-
 charts/hub/templates/kerberos-pipeline/pipe-export.yaml        | 3 ++-
 charts/hub/templates/kerberos-pipeline/pipe-monitor.yaml       | 3 ++-
 charts/hub/templates/kerberos-pipeline/pipe-notify-test.yaml   | 3 ++-
 charts/hub/templates/kerberos-pipeline/pipe-notify.yaml        | 3 ++-
 charts/hub/templates/kerberos-pipeline/pipe-sequence.yaml      | 3 ++-
 charts/hub/templates/kerberos-pipeline/pipe-sprite.yaml        | 3 ++-
 charts/hub/templates/kerberos-pipeline/pipe-throttler.yaml     | 3 ++-
 charts/hub/templates/kerberos-pipeline/pipe-thumbnail.yaml     | 3 ++-
 charts/hub/templates/kerberos-vault/vault-proxy.yaml           | 1 +
 16 files changed, 31 insertions(+), 12 deletions(-)

diff --git a/charts/hub/templates/kerberos-hub/hub-api.yaml b/charts/hub/templates/kerberos-hub/hub-api.yaml
index 273e27e..e419378 100644
--- a/charts/hub/templates/kerberos-hub/hub-api.yaml
+++ b/charts/hub/templates/kerberos-hub/hub-api.yaml
@@ -27,6 +27,7 @@ apiVersion: networking.k8s.io/v1beta1
 kind: Ingress
 metadata:
   name: hub-api-ingress
+  namespace: {{ .Release.Namespace }}
   annotations:
     {{- if eq .Values.ingress "nginx" }}
     kubernetes.io/tls-acme: "true"
@@ -100,6 +101,7 @@ apiVersion: apps/v1
 kind: Deployment
 metadata:
   name: hub-api
+  namespace: {{ .Release.Namespace }}
 spec:
   replicas: {{ .Values.kerberoshub.api.replicas }}
   selector:
diff --git a/charts/hub/templates/kerberos-hub/hub-frontend-demo.yaml b/charts/hub/templates/kerberos-hub/hub-frontend-demo.yaml
index e44bbe5..e0090a7 100644
--- a/charts/hub/templates/kerberos-hub/hub-frontend-demo.yaml
+++ b/charts/hub/templates/kerberos-hub/hub-frontend-demo.yaml
@@ -23,6 +23,7 @@ apiVersion: networking.k8s.io/v1beta1
 kind: Ingress
 metadata:
   name: hub-frontend-demo-ingress
+  namespace: {{ .Release.Namespace }}
   annotations:
     {{- if eq .Values.ingress "nginx" }}
     kubernetes.io/tls-acme: "true"
@@ -63,6 +64,7 @@ apiVersion: apps/v1
 kind: Deployment
 metadata:
   name: hub-frontend-demo
+  namespace: {{ .Release.Namespace }}
 spec:
   replicas: {{ .Values.kerberoshub.frontend.replicas }}
   selector:
diff --git a/charts/hub/templates/kerberos-hub/hub-frontend.yaml b/charts/hub/templates/kerberos-hub/hub-frontend.yaml
index 79f5175..00690fd 100644
--- a/charts/hub/templates/kerberos-hub/hub-frontend.yaml
+++ b/charts/hub/templates/kerberos-hub/hub-frontend.yaml
@@ -23,6 +23,7 @@ apiVersion: networking.k8s.io/v1beta1
 kind: Ingress
 metadata:
   name: hub-frontend-ingress
+  namespace: {{ .Release.Namespace }}
   annotations:
     {{- if eq .Values.kerberoshub.oauth2Proxy.enabled true  }}
     nginx.ingress.kubernetes.io/auth-url: "https://$host/oauth2/auth"
@@ -142,6 +143,7 @@ apiVersion: apps/v1
 kind: Deployment
 metadata:
   name: hub-frontend
+  namespace: {{ .Release.Namespace }}
 spec:
   replicas: {{ .Values.kerberoshub.frontend.replicas }}
   selector:
diff --git a/charts/hub/templates/kerberos-pipeline/pipe-analysis.yaml b/charts/hub/templates/kerberos-pipeline/pipe-analysis.yaml
index 385326e..357ef1b 100644
--- a/charts/hub/templates/kerberos-pipeline/pipe-analysis.yaml
+++ b/charts/hub/templates/kerberos-pipeline/pipe-analysis.yaml
@@ -86,10 +86,11 @@ spec:
 apiVersion: v1
 kind: Service
 metadata:
+  name: pipe-analysis
+  namespace: {{ .Release.Namespace }}
   labels:
     app: pipe-analysis
     service: pipe
-  name: pipe-analysis
 spec:
   ports:
     - name: hub-metrics
diff --git a/charts/hub/templates/kerberos-pipeline/pipe-counting.yaml b/charts/hub/templates/kerberos-pipeline/pipe-counting.yaml
index 1b36b38..c22199d 100644
--- a/charts/hub/templates/kerberos-pipeline/pipe-counting.yaml
+++ b/charts/hub/templates/kerberos-pipeline/pipe-counting.yaml
@@ -62,10 +62,11 @@ spec:
 apiVersion: v1
 kind: Service
 metadata:
+  name: pipe-counting
+  namespace: {{ .Release.Namespace }}
   labels:
     app: pipe-counting
     service: pipe
-  name: pipe-counting
 spec:
   ports:
     - name: hub-metrics
diff --git a/charts/hub/templates/kerberos-pipeline/pipe-dominantcolor.yaml b/charts/hub/templates/kerberos-pipeline/pipe-dominantcolor.yaml
index 46d99c3..fbd9863 100644
--- a/charts/hub/templates/kerberos-pipeline/pipe-dominantcolor.yaml
+++ b/charts/hub/templates/kerberos-pipeline/pipe-dominantcolor.yaml
@@ -62,10 +62,11 @@ spec:
 apiVersion: v1
 kind: Service
 metadata:
+  name: pipe-dominantcolor
+  namespace: {{ .Release.Namespace }}
   labels:
     app: pipe-dominantcolor
     service: pipe
-  name: pipe-dominantcolor
 spec:
   ports:
     - name: hub-metrics
diff --git a/charts/hub/templates/kerberos-pipeline/pipe-event.yaml b/charts/hub/templates/kerberos-pipeline/pipe-event.yaml
index dcc037e..82de61b 100644
--- a/charts/hub/templates/kerberos-pipeline/pipe-event.yaml
+++ b/charts/hub/templates/kerberos-pipeline/pipe-event.yaml
@@ -78,10 +78,11 @@ spec:
 apiVersion: v1
 kind: Service
 metadata:
+  name: pipe-event
+  namespace: {{ .Release.Namespace }}
   labels:
     app: pipe-event
     service: pipe
-  name: pipe-event
 spec:
   ports:
     - name: hub-metrics
diff --git a/charts/hub/templates/kerberos-pipeline/pipe-export.yaml b/charts/hub/templates/kerberos-pipeline/pipe-export.yaml
index 0e3a9ab..9d94f1a 100644
--- a/charts/hub/templates/kerberos-pipeline/pipe-export.yaml
+++ b/charts/hub/templates/kerberos-pipeline/pipe-export.yaml
@@ -112,10 +112,11 @@ spec:
 apiVersion: v1
 kind: Service
 metadata:
+  name: pipe-export
+  namespace: {{ .Release.Namespace }}
   labels:
     app: pipe-export
     service: pipe
-  name: pipe-export
 spec:
   ports:
     - name: hub-metrics
diff --git a/charts/hub/templates/kerberos-pipeline/pipe-monitor.yaml b/charts/hub/templates/kerberos-pipeline/pipe-monitor.yaml
index 58e5bb0..99af29b 100644
--- a/charts/hub/templates/kerberos-pipeline/pipe-monitor.yaml
+++ b/charts/hub/templates/kerberos-pipeline/pipe-monitor.yaml
@@ -97,10 +97,11 @@ spec:
 apiVersion: v1
 kind: Service
 metadata:
+  name: pipe-monitor
+  namespace: {{ .Release.Namespace }}
   labels:
     app: pipe-monitor
     service: pipe
-  name: pipe-monitor
 spec:
   ports:
     - name: hub-metrics
diff --git a/charts/hub/templates/kerberos-pipeline/pipe-notify-test.yaml b/charts/hub/templates/kerberos-pipeline/pipe-notify-test.yaml
index 234482a..ee64834 100644
--- a/charts/hub/templates/kerberos-pipeline/pipe-notify-test.yaml
+++ b/charts/hub/templates/kerberos-pipeline/pipe-notify-test.yaml
@@ -110,10 +110,11 @@ spec:
 apiVersion: v1
 kind: Service
 metadata:
+  name: pipe-notify-test
+  namespace: {{ .Release.Namespace }}
   labels:
     app: pipe-notify-test
     service: pipe
-  name: pipe-notify-test
 spec:
   ports:
     - name: hub-metrics
diff --git a/charts/hub/templates/kerberos-pipeline/pipe-notify.yaml b/charts/hub/templates/kerberos-pipeline/pipe-notify.yaml
index 8bd8cb1..26a5fab 100644
--- a/charts/hub/templates/kerberos-pipeline/pipe-notify.yaml
+++ b/charts/hub/templates/kerberos-pipeline/pipe-notify.yaml
@@ -140,10 +140,11 @@ spec:
 apiVersion: v1
 kind: Service
 metadata:
+  name: pipe-notify
+  namespace: {{ .Release.Namespace }}
   labels:
     app: pipe-notify
     service: pipe
-  name: pipe-notify
 spec:
   ports:
     - name: hub-metrics
diff --git a/charts/hub/templates/kerberos-pipeline/pipe-sequence.yaml b/charts/hub/templates/kerberos-pipeline/pipe-sequence.yaml
index 4cd457a..ef41ecd 100644
--- a/charts/hub/templates/kerberos-pipeline/pipe-sequence.yaml
+++ b/charts/hub/templates/kerberos-pipeline/pipe-sequence.yaml
@@ -74,10 +74,11 @@ spec:
 apiVersion: v1
 kind: Service
 metadata:
+  name: pipe-sequence
+  namespace: {{ .Release.Namespace }}
   labels:
     app: pipe-sequence
     service: pipe
-  name: pipe-sequence
 spec:
   ports:
     - name: hub-metrics
diff --git a/charts/hub/templates/kerberos-pipeline/pipe-sprite.yaml b/charts/hub/templates/kerberos-pipeline/pipe-sprite.yaml
index 58ffd19..07c71c2 100644
--- a/charts/hub/templates/kerberos-pipeline/pipe-sprite.yaml
+++ b/charts/hub/templates/kerberos-pipeline/pipe-sprite.yaml
@@ -86,10 +86,11 @@ spec:
 apiVersion: v1
 kind: Service
 metadata:
+  name: pipe-sprite
+  namespace: {{ .Release.Namespace }}
   labels:
     app: pipe-sprite
     service: pipe
-  name: pipe-sprite
 spec:
   ports:
     - name: hub-metrics
diff --git a/charts/hub/templates/kerberos-pipeline/pipe-throttler.yaml b/charts/hub/templates/kerberos-pipeline/pipe-throttler.yaml
index 6c09663..5e6177e 100644
--- a/charts/hub/templates/kerberos-pipeline/pipe-throttler.yaml
+++ b/charts/hub/templates/kerberos-pipeline/pipe-throttler.yaml
@@ -74,10 +74,11 @@ spec:
 apiVersion: v1
 kind: Service
 metadata:
+  name: pipe-throttler
+  namespace: {{ .Release.Namespace }}
   labels:
     app: pipe-throttler
     service: pipe
-  name: pipe-throttler
 spec:
   ports:
     - name: hub-metrics
diff --git a/charts/hub/templates/kerberos-pipeline/pipe-thumbnail.yaml b/charts/hub/templates/kerberos-pipeline/pipe-thumbnail.yaml
index 5bb44a4..b15a266 100644
--- a/charts/hub/templates/kerberos-pipeline/pipe-thumbnail.yaml
+++ b/charts/hub/templates/kerberos-pipeline/pipe-thumbnail.yaml
@@ -88,10 +88,11 @@ spec:
 apiVersion: v1
 kind: Service
 metadata:
+  name: pipe-thumbnail
+  namespace: {{ .Release.Namespace }}
   labels:
     app: pipe-thumbnail
     service: pipe
-  name: pipe-thumbnail
 spec:
   ports:
     - name: hub-metrics
diff --git a/charts/hub/templates/kerberos-vault/vault-proxy.yaml b/charts/hub/templates/kerberos-vault/vault-proxy.yaml
index 8728003..674038b 100644
--- a/charts/hub/templates/kerberos-vault/vault-proxy.yaml
+++ b/charts/hub/templates/kerberos-vault/vault-proxy.yaml
@@ -48,6 +48,7 @@ apiVersion: v1
 kind: Service
 metadata:
   name: vault-proxy-svc
+  namespace: {{ .Release.Namespace }}
   labels:
     app: vault-proxy-svc
 spec:

From 054d3d60799feaf915270c73fb4025dd138aca92 Mon Sep 17 00:00:00 2001
From: Cedric Verstraeten <cverstraeten@uug.ai>
Date: Mon, 2 Dec 2024 11:33:08 +0100
Subject: [PATCH 2/2] Update Chart.yaml

---
 charts/hub/Chart.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/charts/hub/Chart.yaml b/charts/hub/Chart.yaml
index d3857b1..2aba403 100644
--- a/charts/hub/Chart.yaml
+++ b/charts/hub/Chart.yaml
@@ -16,7 +16,7 @@ type: application
 # This is the chart version. This version number should be incremented each time you make changes
 # to the chart and its templates, including the app version.
 # Versions are expected to follow Semantic Versioning (https://semver.org/)
-version: 0.75.0
+version: 0.76.0
 
 # This is the version number of the application being deployed. This version number should be
 # incremented each time you make changes to the application. Versions are not expected to