mirror of https://github.com/fluxcd/flux2.git
Add test for customizing bootstrap
Signed-off-by: Somtochi Onyekwere <somtochionyekwere@gmail.com>pull/1932/head
parent
1d1d4bbf4b
commit
6a6bba8669
@ -0,0 +1,81 @@
|
||||
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)
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue