Skip to content

Commit

Permalink
Merge pull request #262 from Telecominfraproject/WIFI-13357-be-able-t…
Browse files Browse the repository at this point in the history
…o-set-ingress-class-name-for-all-the-component-helm-charts-as-the-annotation-is-no-longer-supported

Wifi 13357 be able to set ingress class name for all the component helm charts as the annotation is no longer supported
  • Loading branch information
carsten989 authored Feb 15, 2024
2 parents 6f2c8d9 + 536e84c commit c7692c9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 5 additions & 3 deletions chart/environment-values/cleanup.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#!/bin/bash
[ -z "$NAMESPACE" ] && echo "No NAMESPACE set" && exit 1
helm -n openwifi-"$NAMESPACE" delete tip-openwifi
sleep 30
kubectl delete ns openwifi-"$NAMESPACE"
exit 0
if [[ "$1" == "full" ]] ; then
sleep 30
kubectl delete ns openwifi-"$NAMESPACE"
fi
exit 0
10 changes: 4 additions & 6 deletions chart/environment-values/values.openwifi-qa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,6 @@ owgwui:
default:
enabled: true
annotations:
kubernetes.io/ingress.class: alb
alb.ingress.kubernetes.io/scheme: internet-facing
alb.ingress.kubernetes.io/group.name: wlan-cicd
alb.ingress.kubernetes.io/certificate-arn: arn:aws:acm:ap-south-1:289708231103:certificate/2cc8c764-11fd-411d-bf7d-a93f488f3f6c
Expand Down Expand Up @@ -565,7 +564,6 @@ owprovui:
default:
enabled: true
annotations:
kubernetes.io/ingress.class: alb
alb.ingress.kubernetes.io/scheme: internet-facing
alb.ingress.kubernetes.io/group.name: wlan-cicd
alb.ingress.kubernetes.io/certificate-arn: arn:aws:acm:ap-south-1:289708231103:certificate/2cc8c764-11fd-411d-bf7d-a93f488f3f6c
Expand Down Expand Up @@ -846,11 +844,11 @@ clustersysteminfo:
haproxy:
resources:
requests:
cpu: 10m
memory: 20Mi
cpu: 50m
memory: 50Mi
limits:
cpu: 10m
memory: 20Mi
cpu: 50m
memory: 50Mi
service:
annotations:
service.beta.kubernetes.io/aws-load-balancer-backend-protocol: ssl
Expand Down

0 comments on commit c7692c9

Please sign in to comment.