--- apiVersion: v1 kind: ConfigMap metadata: name: dex data: config.yaml: | issuer: $(issuer) storage: type: kubernetes config: inCluster: true web: http: 0.0.0.0:5556 logger: level: "debug" format: text oauth2: skipApprovalScreen: true enablePasswordDB: true staticPasswords: - email: $(static_email) hash: $(static_password_hash) username: $(static_username) userID: $(static_user_id) staticClients: - id: $(client_id) redirectURIs: $(oidc_redirect_uris) name: 'Dex Login Application' secret: $(application_secret)