You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
1.7 KiB
84 lines
1.7 KiB
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
namespace: auth
|
|
resources:
|
|
- namespace.yaml
|
|
- config-map.yaml
|
|
- crds.yaml
|
|
- deployment.yaml
|
|
- service.yaml
|
|
configMapGenerator:
|
|
- name: dex-parameters
|
|
env: params.env
|
|
generatorOptions:
|
|
disableNameSuffixHash: true
|
|
vars:
|
|
- name: dex_domain
|
|
objref:
|
|
kind: ConfigMap
|
|
name: dex-parameters
|
|
apiVersion: v1
|
|
fieldref:
|
|
fieldpath: data.dex_domain
|
|
- name: issuer
|
|
objref:
|
|
kind: ConfigMap
|
|
name: dex-parameters
|
|
apiVersion: v1
|
|
fieldref:
|
|
fieldpath: data.issuer
|
|
- name: static_email
|
|
objref:
|
|
kind: ConfigMap
|
|
name: dex-parameters
|
|
apiVersion: v1
|
|
fieldref:
|
|
fieldpath: data.static_email
|
|
- name: static_password_hash
|
|
objref:
|
|
kind: ConfigMap
|
|
name: dex-parameters
|
|
apiVersion: v1
|
|
fieldref:
|
|
fieldpath: data.static_password_hash
|
|
- name: static_username
|
|
objref:
|
|
kind: ConfigMap
|
|
name: dex-parameters
|
|
apiVersion: v1
|
|
fieldref:
|
|
fieldpath: data.static_username
|
|
- name: static_user_id
|
|
objref:
|
|
kind: ConfigMap
|
|
name: dex-parameters
|
|
apiVersion: v1
|
|
fieldref:
|
|
fieldpath: data.static_user_id
|
|
- name: client_id
|
|
objref:
|
|
kind: ConfigMap
|
|
name: dex-parameters
|
|
apiVersion: v1
|
|
fieldref:
|
|
fieldpath: data.client_id
|
|
- name: oidc_redirect_uris
|
|
objref:
|
|
kind: ConfigMap
|
|
name: dex-parameters
|
|
apiVersion: v1
|
|
fieldref:
|
|
fieldpath: data.oidc_redirect_uris
|
|
- name: application_secret
|
|
objref:
|
|
kind: ConfigMap
|
|
name: dex-parameters
|
|
apiVersion: v1
|
|
fieldref:
|
|
fieldpath: data.application_secret
|
|
configurations:
|
|
- params.yaml
|
|
images:
|
|
- name: quay.io/coreos/dex
|
|
newName: gcr.io/arrikto/dexidp/dex
|
|
newTag: 4bede5eb80822fc3a7fc9edca0ed2605cd339d17
|
|
|