mirror of https://github.com/fluxcd/flux2.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
2.0 KiB
Go
82 lines
2.0 KiB
Go
3 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"log"
|
||
|
"os"
|
||
|
|
||
|
"github.com/fluxcd/go-git-providers/github"
|
||
|
"github.com/fluxcd/go-git-providers/gitprovider"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
ks := "test-cluster/flux-system/kustomization.yaml"
|
||
|
patchName := "test-cluster/flux-system/gotk-patches.yaml"
|
||
|
ksContent := `apiVersion: kustomize.config.k8s.io/v1beta1
|
||
|
kind: Kustomization
|
||
|
resources:
|
||
|
- gotk-components.yaml
|
||
|
- gotk-sync.yaml
|
||
|
patches:
|
||
|
- path: gotk-patches.yaml
|
||
|
target:
|
||
|
kind: Deployment`
|
||
|
patchContent := `apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: all-flux-components
|
||
|
spec:
|
||
|
template:
|
||
|
metadata:
|
||
|
annotations:
|
||
|
# Required by Kubernetes node autoscaler
|
||
|
cluster-autoscaler.kubernetes.io/safe-to-evict: "true"
|
||
|
spec:
|
||
|
securityContext:
|
||
|
runAsUser: 10000
|
||
|
fsGroup: 1337
|
||
|
containers:
|
||
|
- name: manager
|
||
|
securityContext:
|
||
|
readOnlyRootFilesystem: true
|
||
|
allowPrivilegeEscalation: false
|
||
|
runAsNonRoot: true
|
||
|
capabilities:
|
||
|
drop:
|
||
|
- ALL
|
||
|
`
|
||
|
commitFiles := []gitprovider.CommitFile{
|
||
|
{
|
||
|
Path: &ks,
|
||
|
Content: &ksContent,
|
||
|
},
|
||
|
{
|
||
|
Path: &patchName,
|
||
|
Content: &patchContent,
|
||
|
},
|
||
|
}
|
||
|
repoName := os.Getenv("GITHUB_REPO_NAME")
|
||
|
githubToken := os.Getenv("GITHUB_TOKEN")
|
||
|
client, err := github.NewClient(github.WithOAuth2Token(githubToken))
|
||
|
if err != nil {
|
||
|
log.Fatalf("error initializing github client: %s", err)
|
||
|
}
|
||
|
|
||
|
repoRef := gitprovider.OrgRepositoryRef{
|
||
|
OrganizationRef: gitprovider.OrganizationRef{
|
||
|
Organization: "flux-testing",
|
||
|
Domain: "github.com",
|
||
|
},
|
||
|
RepositoryName: repoName,
|
||
|
}
|
||
|
repo, err := client.OrgRepositories().Get(context.Background(), repoRef)
|
||
|
if err != nil {
|
||
|
log.Fatalf("error getting %s repository in org %s: %s", repoRef.RepositoryName, repoRef.Organization, err)
|
||
|
}
|
||
|
|
||
|
_, err = repo.Commits().Create(context.Background(), "main", "add patch manifest 3", commitFiles)
|
||
|
if err != nil {
|
||
|
log.Fatalf("error making commit: %s", err)
|
||
|
}
|
||
|
}
|