https://github.com/metal-stack/zitadel-init
https://github.com/metal-stack/zitadel-init
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/metal-stack/zitadel-init
- Owner: metal-stack
- License: mit
- Created: 2025-11-06T10:00:14.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2026-02-18T08:41:11.000Z (2 months ago)
- Last Synced: 2026-02-18T13:08:50.146Z (2 months ago)
- Language: Go
- Size: 35.2 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# zitadel-init
This repository contains the initialization scripts and configurations for setting up a default application in Zitadel. It uses the official Zitadel go-sdk to create and configure the application. In addition it also saves the client_id and client_secret to a k8s secret.
Main usage is to bootstrap a default application in the mini-lab.
## Development against mini-lab
```bash
make zitadel-init
./bin/zitadel-init-linux-amd64 \
--zitadel-endpoint=zitadel.172.17.0.1.nip.io \
--zitadel-external-domain=zitadel.172.17.0.1.nip.io \
--zitadel-port=8080 \
--zitadel-pat=$(kubectl -n metal-control-plane get secrets iam-admin-pat -o jsonpath='{.data.pat}' | base64 -d ) \
--namespace=metal-control-plane \
--secret=zitadel-client-credentials \
--zitadel-skip-verify-tls=True \
--zitadel-insecure=True \
--config-path=./examples/config.yaml
```