You need to have https://kustomize.io/ installed (part of your onboarding plan)
-
write bash script that accepts unlimited number of arguments.
-
each argument means the name of the repository.
-
generate a valid
ed25519
ssh key for each of the repository. Store the keys in repos/ folder- each key should have the following suffix added to the file
-deploy-key.pem
, for exampleiss-kubernetes-aws-deploy-key.pem
- each key should have the following suffix added to the file
-
generate the
repos/kustomization.yaml
file based on the structure provided below -
make sure you can run cli
kustomize build repos
and get proper generated output without errors like this one: -
validate for errors and don't allow execution if no args are passed to the script
-
your script should perform
kustomize build repos
and output the yaml file to stdoutapiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization generatorOptions: disableNameSuffixHash: true secretGenerator: - name: iss-kubernetes-aws namespace: argo-cd options: labels: argocd.argoproj.io/secret-type: repository literals: - name=iss-kubernetes-aws - [email protected]:saritasa-nest/iss-kubernetes-aws.git - type=git - project=default files: - sshPrivateKey=iss-kubernetes-aws-deploy-key.pem - name: iss-backend namespace: argo-cd options: labels: argocd.argoproj.io/secret-type: repository literals: - name=iss-backend - [email protected]:saritasa-nest/iss-backend.git - type=git - project=default files: - sshPrivateKey=iss-backend-deploy-key.pem - name: iss-frontend namespace: argo-cd options: labels: argocd.argoproj.io/secret-type: repository literals: - name=iss-frontend - [email protected]:saritasa-nest/iss-frontend.git - type=git - project=default files: - sshPrivateKey=iss-frontend-deploy-key.pem
cd t2/
./chapter2-t2-gen-kustomization.sh iss-kubernetes-aws iss-backend iss-frontend
output:
your task output goes here