mirror of
https://github.com/khuedoan/homelab.git
synced 2025-02-03 12:54:54 +07:00
refactor(gitea)!: switch init job to structured config as code
This commit is contained in:
parent
86807062b2
commit
134c0b4902
@ -1,6 +1,9 @@
|
||||
users:
|
||||
- name: renovate
|
||||
tokenSecretRef: renovate-secret # ???
|
||||
# TODO create user and access token
|
||||
# users:
|
||||
# - name: renovate
|
||||
# fullName: Renovate
|
||||
# email: bot@renovateapp.com
|
||||
# tokenSecretRef: renovate-secret # ???
|
||||
organizations:
|
||||
- name: ops
|
||||
description: Operations
|
||||
@ -15,19 +18,16 @@ repositories:
|
||||
migrate:
|
||||
source: https://github.com/khuedoan/homelab
|
||||
mirror: false
|
||||
webhooks:
|
||||
- http://gitea-webhook.tekton-pipelines:3000
|
||||
# TODO create webhook (use a global one?)
|
||||
# webhooks:
|
||||
# - http://gitea-webhook.tekton-pipelines:3000
|
||||
- name: blog
|
||||
owner: khuedoan
|
||||
migrate:
|
||||
source: https://github.com/khuedoan/blog
|
||||
mirror: true
|
||||
webhooks:
|
||||
- http://gitea-webhook.tekton-pipelines:3000
|
||||
- name: backstage
|
||||
owner: khuedoan
|
||||
migrate:
|
||||
source: https://github.com/khuedoan/backstage
|
||||
mirror: true
|
||||
webhooks:
|
||||
- http://gitea-webhook.tekton-pipelines:3000
|
||||
|
@ -1,7 +1,8 @@
|
||||
package main
|
||||
|
||||
// TODO WIP clean this up
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"log"
|
||||
"os"
|
||||
|
||||
@ -9,11 +10,6 @@ import (
|
||||
"gopkg.in/yaml.v2"
|
||||
)
|
||||
|
||||
type User struct {
|
||||
Name string
|
||||
TokenSecretRef string
|
||||
}
|
||||
|
||||
type Organization struct {
|
||||
Name string
|
||||
Description string
|
||||
@ -27,11 +23,9 @@ type Repository struct {
|
||||
Source string
|
||||
Mirror bool
|
||||
}
|
||||
Webhooks []string
|
||||
}
|
||||
|
||||
type Config struct {
|
||||
Users []User
|
||||
Organizations []Organization
|
||||
Repositories []Repository
|
||||
}
|
||||
@ -40,7 +34,7 @@ func main() {
|
||||
data, err := os.ReadFile("./config.yaml")
|
||||
|
||||
if err != nil {
|
||||
log.Fatalf("unable to read config file: %v", err)
|
||||
log.Fatalf("Unable to read config file: %v", err)
|
||||
}
|
||||
|
||||
config := Config{}
|
||||
@ -51,15 +45,12 @@ func main() {
|
||||
log.Fatalf("error: %v", err)
|
||||
}
|
||||
|
||||
fmt.Println(config)
|
||||
gitea_host := os.Getenv("GITEA_HOST")
|
||||
gitea_user := os.Getenv("GITEA_USER")
|
||||
gitea_password := os.Getenv("GITEA_PASSWORD")
|
||||
|
||||
// TODO
|
||||
url := "https://git.khuedoan.com"
|
||||
// url := "http://gitea-http:3000"
|
||||
password := "thisisjustfortestingdude"
|
||||
|
||||
options := (gitea.SetBasicAuth("gitea_admin", password))
|
||||
client, err := gitea.NewClient(url, options)
|
||||
options := (gitea.SetBasicAuth(gitea_user, gitea_password))
|
||||
client, err := gitea.NewClient(gitea_host, options)
|
||||
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
@ -72,7 +63,7 @@ func main() {
|
||||
})
|
||||
|
||||
if err != nil {
|
||||
log.Printf("Create organization %s: %s", "testing", err)
|
||||
log.Printf("Create organization %s: %v", org.Name, err)
|
||||
}
|
||||
}
|
||||
|
||||
@ -89,11 +80,12 @@ func main() {
|
||||
})
|
||||
|
||||
if err != nil {
|
||||
log.Printf("Migrate %s/%s: %s", repo.Owner, repo.Name, err)
|
||||
log.Printf("Migrate %s/%s: %v", repo.Owner, repo.Name, err)
|
||||
}
|
||||
} else {
|
||||
_, _, err = client.AdminCreateRepo(repo.Owner, gitea.CreateRepoOption{
|
||||
Name: repo.Name,
|
||||
// Description: "TODO",
|
||||
Private: repo.Private,
|
||||
})
|
||||
}
|
||||
|
@ -1,64 +0,0 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
import json
|
||||
import os
|
||||
import subprocess
|
||||
import sys
|
||||
|
||||
subprocess.check_call([sys.executable, "-m", "pip", "install", "requests"])
|
||||
|
||||
import requests
|
||||
|
||||
gitea_host = os.getenv('GITEA_HOST', "gitea-http:3000")
|
||||
gitea_user = os.environ['GITEA_USER']
|
||||
gitea_pass = os.environ['GITEA_PASSWORD']
|
||||
seed_repo = "https://github.com/khuedoan/homelab"
|
||||
org = "ops"
|
||||
repo = "homelab"
|
||||
gitea_url = f"http://{gitea_user}:{gitea_pass}@{gitea_host}"
|
||||
|
||||
headers = {
|
||||
'Content-Type': 'application/json'
|
||||
}
|
||||
|
||||
data_org = json.dumps({
|
||||
'username': org
|
||||
})
|
||||
|
||||
data_repo = json.dumps({
|
||||
'clone_addr': seed_repo,
|
||||
'uid': 1,
|
||||
'repo_owner': org,
|
||||
'repo_name': repo,
|
||||
'mirror': True
|
||||
})
|
||||
|
||||
resp = requests.post(
|
||||
url=f"{gitea_url}/api/v1/admin/users/{gitea_user}/orgs",
|
||||
headers=headers,
|
||||
data=data_org
|
||||
)
|
||||
|
||||
if resp.status_code == 201:
|
||||
print(f"Created organization {org}")
|
||||
elif resp.status_code == 422:
|
||||
print(f"Organization already exists")
|
||||
else:
|
||||
print(f"Error creating organization {org} ({resp.status_code})")
|
||||
print(resp.content)
|
||||
sys.exit(1)
|
||||
|
||||
resp = requests.post(
|
||||
url=f"{gitea_url}/api/v1/repos/migrate",
|
||||
headers=headers,
|
||||
data=data_repo
|
||||
)
|
||||
|
||||
if resp.status_code == 201:
|
||||
print(f"Created repository {json.loads(str(resp.content, 'utf8'))['html_url']}")
|
||||
elif resp.status_code == 409:
|
||||
print(f"Repository already exists")
|
||||
else:
|
||||
print(f"Error creating git repository ({resp.status_code})")
|
||||
print(resp.content)
|
||||
sys.exit(1)
|
@ -1,7 +1,7 @@
|
||||
apiVersion: batch/v1
|
||||
kind: Job
|
||||
kind: Job # TODO switch to CronJob
|
||||
metadata:
|
||||
name: init-gitops-repo
|
||||
name: gitea-config
|
||||
namespace: {{ .Release.Namespace }}
|
||||
annotations:
|
||||
argocd.argoproj.io/sync-wave: "1"
|
||||
@ -11,9 +11,11 @@ spec:
|
||||
spec:
|
||||
restartPolicy: Never
|
||||
containers:
|
||||
- name: script
|
||||
image: python
|
||||
- name: apply
|
||||
image: golang:1.17-alpine
|
||||
env:
|
||||
- name: GITEA_HOST
|
||||
value: http://gitea-http:3000
|
||||
- name: GITEA_USER
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
@ -24,9 +26,18 @@ spec:
|
||||
secretKeyRef:
|
||||
name: gitea-admin-secret
|
||||
key: password
|
||||
workingDir: /go/src/gitea-config
|
||||
command:
|
||||
- python
|
||||
- sh
|
||||
- -c
|
||||
args:
|
||||
- |
|
||||
{{ .Files.Get "files/init_gitops_repo.py" | indent 14 }}
|
||||
go get .
|
||||
go run .
|
||||
volumeMounts:
|
||||
- name: source
|
||||
mountPath: /go/src/gitea-config
|
||||
volumes:
|
||||
- name: source
|
||||
configMap:
|
||||
name: gitea-config-source
|
Loading…
Reference in New Issue
Block a user