Skip to content

paranoiasystem/mykube

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published