Add Google Cloud K3s infrastructure support
- Add Terraform configuration for GCP instance and storage - Add startup script for K3s installation and configuration - Add pipeline scripts for deployment and management - Add Forgejo deployment manifests and configuration
This commit is contained in:
parent
7384722305
commit
2ab7872af1
30 changed files with 1024 additions and 324 deletions
47
gcloud/tf/scripts/install-forgejo-pipeline.json
Normal file
47
gcloud/tf/scripts/install-forgejo-pipeline.json
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
[
|
||||
{
|
||||
"name": "install cert-manager",
|
||||
"function": "RunCommand",
|
||||
"params": [
|
||||
"gcloud/tf/scripts/cert-manager/install_cert-manager.sh"
|
||||
],
|
||||
"retryCount": 0,
|
||||
"shouldAbort": true
|
||||
},
|
||||
{
|
||||
"name": "install traefik",
|
||||
"function": "RunCommand",
|
||||
"params": [
|
||||
"gcloud/tf/scripts/install_traefik.sh"
|
||||
],
|
||||
"retryCount": 0,
|
||||
"shouldAbort": true
|
||||
},
|
||||
{
|
||||
"name": "create forgejo ingress",
|
||||
"function": "RunCommand",
|
||||
"params": [
|
||||
"./gcloud/tf/scripts/forgejo/create_ingress.sh"
|
||||
],
|
||||
"retryCount": 0,
|
||||
"shouldAbort": true
|
||||
},
|
||||
{
|
||||
"name": "create forgejo issuer",
|
||||
"function": "RunCommand",
|
||||
"params": [
|
||||
"./gcloud/tf/scripts/forgejo/create_issuer.sh"
|
||||
],
|
||||
"retryCount": 0,
|
||||
"shouldAbort": true
|
||||
},
|
||||
{
|
||||
"name": "install forgejo",
|
||||
"function": "RunCommand",
|
||||
"params": [
|
||||
"./gcloud/tf/scripts/forgejo/install_forgejo.sh"
|
||||
],
|
||||
"retryCount": 0,
|
||||
"shouldAbort": true
|
||||
}
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue