UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects

Disable keycloak helm test until working on rke2

Merged Branden Cobb requested to merge BrandenCobb-master-patch-66080 into master
All threads resolved!
Compare and
1 file
+ 14
10
Compare changes
  • Side-by-side
  • Inline
+ 14
10
@@ -867,12 +867,6 @@ addons:
ingress:
gateway: "public"
values:
replicas: 1
resources:
requests:
cpu: 10m
memory: 16Mi
limits: {}
bbtests:
enabled: true
cypress:
@@ -881,7 +875,12 @@ addons:
cypress_url: "https://keycloak.bigbang.dev"
cypress_username: "admin"
cypress_password: "password"
# Custom dev secret configuration
replicas: 1
resources:
requests:
cpu: 10m
memory: 16Mi
limits: {}
secrets:
env:
stringData:
@@ -897,7 +896,7 @@ addons:
realm:
stringData:
realm.json: '{{ .Files.Get "resources/dev/baby-yoda.json" }}'
extraVolumes: |-
extraVolumes: |-
- name: certauthority
secret:
secretName: {{ include "keycloak.fullname" . }}-certauthority
@@ -907,6 +906,12 @@ addons:
- name: realm
secret:
secretName: {{ include "keycloak.fullname" . }}-realm
- name: tlscert
secret:
secretName: keycloak-tlscert
- name: tlskey
secret:
secretName: keycloak-tlskey
extraVolumeMounts: |-
- name: certauthority
mountPath: /etc/x509/https/cas.pem
@@ -920,8 +925,6 @@ addons:
mountPath: /opt/jboss/keycloak/realm.json
subPath: realm.json
readOnly: true
extraVolumeMountsBigBang:
- name: tlscert
mountPath: /etc/x509/https/tls.crt
subPath: tls.crt
@@ -930,3 +933,4 @@ addons:
mountPath: /etc/x509/https/tls.key
subPath: tls.key
readOnly: true
Loading