https://github.com/paranoiasystem/mykube
https://github.com/paranoiasystem/mykube
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/paranoiasystem/mykube
- Owner: paranoiasystem
- Created: 2023-02-02T14:26:07.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-02-03T13:49:51.000Z (over 3 years ago)
- Last Synced: 2026-01-26T11:31:34.249Z (5 months ago)
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# How to fix ArgoCD infinite healtcheck on ingress
`kubectl -n argocd edit configmap argocd-cm`
add
```yaml
data:
resource.customizations: |
networking.k8s.io/Ingress:
health.lua: |
hs = {}
hs.status = "Healthy"
return hs
```
# Install Keycloak Operator
[https://www.keycloak.org/operator/installation](https://www.keycloak.org/operator/installation)
## Basic Deploy
info: [https://www.keycloak.org/operator/basic-deployment](https://www.keycloak.org/operator/basic-deployment)
### Database
for prod [https://access.crunchydata.com/documentation/postgres-operator/latest/](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
```sh
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`