Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 1.05 KB

README.md

File metadata and controls

43 lines (28 loc) · 1.05 KB

How to fix ArgoCD infinite healtcheck on ingress

kubectl -n argocd edit configmap argocd-cm

add

data:
  resource.customizations: |
    networking.k8s.io/Ingress:
        health.lua: |
          hs = {}
          hs.status = "Healthy"
          return hs

Install Keycloak Operator

https://www.keycloak.org/operator/installation

Basic Deploy

info: https://www.keycloak.org/operator/basic-deployment

Database

for prod https://access.crunchydata.com/documentation/postgres-operator/latest/

for test keycloak_operator_example/example-postgres.yaml

Secret DB credential for Keycloak

test credential: postgres:testpassword

kubectl create secret generic keycloak-db-secret \
  --from-literal=username=[your_database_username] \
  --from-literal=password=[your_database_password]

Keycloak Example

for test keycloak_operator_example/example-kc.yaml