-
Notifications
You must be signed in to change notification settings - Fork 325
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4327 from wireapp/release_2024-11-04_13_21
Release 2024-11-04 - (expected chart version 5.7.0)
- Loading branch information
Showing
44 changed files
with
194 additions
and
293 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
charts/nginx-ingress-services/templates/ingress_minio.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{{- $apiIsStable := eq (include "ingress.isStable" .) "true" -}} | ||
{{- $ingressFieldNotAnnotation := eq (include "ingress.FieldNotAnnotation" .) "true" -}} | ||
{{- $ingressSupportsPathType := eq (include "ingress.supportsPathType" .) "true" -}} | ||
{{- if .Values.fakeS3.enabled }} | ||
# We use a separate ingress for minio because we want to restrict access to /minio/ path | ||
# for security reasons | ||
apiVersion: {{ include "ingress.apiVersion" . }} | ||
kind: Ingress | ||
metadata: | ||
name: minio-ingress | ||
annotations: | ||
{{- if not $ingressFieldNotAnnotation }} | ||
kubernetes.io/ingress.class: "{{ .Values.config.ingressClass }}" | ||
{{- end }} | ||
nginx.ingress.kubernetes.io/server-snippet: | | ||
location /minio/ { | ||
return 403; | ||
} | ||
spec: | ||
{{- if $ingressFieldNotAnnotation }} | ||
ingressClassName: "{{ .Values.config.ingressClass }}" | ||
{{- end }} | ||
tls: | ||
- hosts: | ||
- {{ .Values.config.dns.fakeS3 }} | ||
secretName: {{ include "nginx-ingress-services.getCertificateSecretName" . | quote }} | ||
rules: | ||
- host: {{ .Values.config.dns.fakeS3 }} | ||
http: | ||
paths: | ||
- path: / | ||
{{- if $ingressSupportsPathType }} | ||
pathType: Prefix | ||
{{- end }} | ||
backend: | ||
{{- if $apiIsStable }} | ||
service: | ||
name: {{ .Values.service.s3.serviceName }} | ||
port: | ||
number: {{ .Values.service.s3.externalPort }} | ||
{{- else }} | ||
serviceName: {{ .Values.service.s3.serviceName }} | ||
servicePort: {{ .Values.service.s3.externalPort }} | ||
{{- end }} | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,9 @@ | ||
#!/usr/bin/env bash | ||
|
||
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/.." | ||
|
||
set -x | ||
|
||
IFS=$'\n' | ||
for NAMESPACE in $(kubectl get namespaces | grep "^test-" | awk '{print $1}'); do | ||
|
||
echo "$NAMESPACE" | ||
kubectl delete namespace "$NAMESPACE" & | ||
|
||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.