Skip to content

Instantly share code, notes, and snippets.

@dmitry-mightydevops
Created March 30, 2023 04:53
Show Gist options
  • Save dmitry-mightydevops/b780b9385443ef5634ef9ab749e4d5f8 to your computer and use it in GitHub Desktop.
Save dmitry-mightydevops/b780b9385443ef5634ef9ab749e4d5f8 to your computer and use it in GitHub Desktop.
pr example

Summary

Test Task

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 example iss-kubernetes-aws-deploy-key.pem
  • 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 stdout

    apiVersion: 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

my results

cd t2/
./chapter2-t2-gen-kustomization.sh iss-kubernetes-aws iss-backend iss-frontend

output:

your task output goes here
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment