All checks were successful
Mindforge Cronjob Build and Deploy / Build Mindforge Cronjob Image (push) Successful in 4m12s
Mindforge Cronjob Build and Deploy / Deploy Mindforge Cronjob (internal) (push) Successful in 36s
Mindforge Web Build and Deploy (internal) / Build Mindforge Web Image (push) Successful in 5m30s
Mindforge Web Build and Deploy (internal) / Deploy Mindforge Web (internal) (push) Successful in 8s
21 lines
584 B
Markdown
21 lines
584 B
Markdown
# Implantação
|
|
|
|
## Configuração do ambiente
|
|
|
|
```bash
|
|
kubectl create ns mindforge
|
|
kubectl create secret generic mindforge-secrets -n mindforge \
|
|
--from-literal=GIT_REPOSITORY="your_git_repository" \
|
|
--from-literal=GEMINI_API_KEY="your_gemini_api_key" \
|
|
--from-literal=OPENAI_API_KEY="your_openai_api_key" \
|
|
--from-literal=DISCORD_WEBHOOK_URL="your_discord_webhook_url" \
|
|
--from-literal=HAVEN_NOTIFY_URL="your_haven_notify_url" \
|
|
--from-literal=SSH_PRIVATE_KEY="your_ssh_private_key"
|
|
```
|
|
|
|
## Implantação
|
|
|
|
```bash
|
|
kubectl apply -f mindforge-cronjob.yaml
|
|
```
|