Fix tests

Signed-off-by: Kevin Fox <[email protected]>

Co-authored-by: Marco Franssen <[email protected]>
This commit is contained in:
Kevin Fox
2023-03-16 18:58:31 +01:00
committed by Marco Franssen
co-authored by Marco Franssen
parent a9b99febb3
commit 6322a9a138
5 changed files with 9 additions and 7 deletions
@@ -1,3 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
helm install ingress-nginx ingress-nginx --version 4.5.2 --repo https://kubernetes.github.io/ingress-nginx -n "$VALUES" --set controller.extraArgs.enable-ssl-passthrough=
kubectl wait --namespace ingress-nginx --for=condition=ready pod --selector=app.kubernetes.io/component=controller -n "$VALUES" helm install ingress-nginx ingress-nginx --version 4.5.2 --repo https://kubernetes.github.io/ingress-nginx -n "$scenario" --set controller.extraArgs.enable-ssl-passthrough=
kubectl wait --namespace ingress-nginx --for=condition=ready pod --selector=app.kubernetes.io/component=controller -n "$scenario"
@@ -13,7 +13,7 @@ spiffe-oidc-discovery-provider:
ingress: ingress:
enabled: true enabled: true
className: "nginx" className: nginx
hosts: hosts:
- host: ingress-nginx-controller - host: ingress-nginx-controller
paths: paths:
@@ -37,7 +37,7 @@ A Helm chart to install the SPIFFE OIDC discovery provider.
| ingress.annotations | object | `{}` | | | ingress.annotations | object | `{}` | |
| ingress.className | string | `""` | | | ingress.className | string | `""` | |
| ingress.enabled | bool | `false` | | | ingress.enabled | bool | `false` | |
| ingress.hosts[0].host | string | `"chart-example.local"` | | | ingress.hosts[0].host | string | `"oidc-discovery.example.org"` | |
| ingress.hosts[0].paths[0].path | string | `"/"` | | | ingress.hosts[0].paths[0].path | string | `"/"` | |
| ingress.hosts[0].paths[0].pathType | string | `"Prefix"` | | | ingress.hosts[0].paths[0].pathType | string | `"Prefix"` | |
| ingress.tls | list | `[]` | | | ingress.tls | list | `[]` | |
@@ -5,6 +5,7 @@ apiVersion: networking.k8s.io/v1
kind: Ingress kind: Ingress
metadata: metadata:
name: {{ $fullName }} name: {{ $fullName }}
namespace: {{ include "spiffe-oidc-discovery-provider.namespace" . }}
labels: labels:
{{- include "spiffe-oidc-discovery-provider.labels" . | nindent 4 }} {{- include "spiffe-oidc-discovery-provider.labels" . | nindent 4 }}
{{- with .Values.ingress.annotations }} {{- with .Values.ingress.annotations }}
@@ -29,11 +29,11 @@ spec:
args: ['-O', '/dev/null', '{{ include "spiffe-oidc-discovery-provider.fullname" . }}.{{ include "spiffe-oidc-discovery-provider.namespace" . }}.svc.cluster.local:{{ .Values.service.port }}/.well-known/openid-configuration'] args: ['-O', '/dev/null', '{{ include "spiffe-oidc-discovery-provider.fullname" . }}.{{ include "spiffe-oidc-discovery-provider.namespace" . }}.svc.cluster.local:{{ .Values.service.port }}/.well-known/openid-configuration']
securityContext: securityContext:
{{- toYaml .Values.securityContext | nindent 8 }} {{- toYaml .Values.securityContext | nindent 8 }}
{{- if and .Values.ingress.enabled .Values.ingress.test.enabled }} {{- if .Values.ingress.enabled }}
- name: wget-ingress - name: wget-ingress
image: busybox image: busybox
command: ['wget'] command: ['wget']
args: ['{{ index .Values.config.domains 0 }}/.well-known/openid-configuration'] args: ['-O', '/dev/null', '{{ index .Values.config.domains 0 }}/.well-known/openid-configuration']
securityContext: securityContext:
{{- toYaml .Values.securityContext | nindent 8 }} {{- toYaml .Values.securityContext | nindent 8 }}
{{- end }} {{- end }}