From fbb1dac68541b3589a515daba3b734861200434f Mon Sep 17 00:00:00 2001 From: arunaccuknox Date: Thu, 7 Mar 2024 17:10:17 +0530 Subject: [PATCH 1/2] renamed --- {accuknox-cis-job => accuknox-cis-k8s}/.helmignore | 0 {accuknox-cis-job => accuknox-cis-k8s}/Chart.yaml | 2 +- {accuknox-cis-job => accuknox-cis-k8s}/README.md | 0 {accuknox-cis-job => accuknox-cis-k8s}/templates/_helpers.tpl | 0 {accuknox-cis-job => accuknox-cis-k8s}/templates/cis-job.yaml | 0 {accuknox-cis-job => accuknox-cis-k8s}/values.yaml | 0 6 files changed, 1 insertion(+), 1 deletion(-) rename {accuknox-cis-job => accuknox-cis-k8s}/.helmignore (100%) rename {accuknox-cis-job => accuknox-cis-k8s}/Chart.yaml (98%) rename {accuknox-cis-job => accuknox-cis-k8s}/README.md (100%) rename {accuknox-cis-job => accuknox-cis-k8s}/templates/_helpers.tpl (100%) rename {accuknox-cis-job => accuknox-cis-k8s}/templates/cis-job.yaml (100%) rename {accuknox-cis-job => accuknox-cis-k8s}/values.yaml (100%) diff --git a/accuknox-cis-job/.helmignore b/accuknox-cis-k8s/.helmignore similarity index 100% rename from accuknox-cis-job/.helmignore rename to accuknox-cis-k8s/.helmignore diff --git a/accuknox-cis-job/Chart.yaml b/accuknox-cis-k8s/Chart.yaml similarity index 98% rename from accuknox-cis-job/Chart.yaml rename to accuknox-cis-k8s/Chart.yaml index 57fc40c..2838f8e 100644 --- a/accuknox-cis-job/Chart.yaml +++ b/accuknox-cis-k8s/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v2 -name: accuknox-cis-job +name: accuknox-cis-k8s description: A Helm chart for Kubernetes # A chart can be either an 'application' or a 'library' chart. diff --git a/accuknox-cis-job/README.md b/accuknox-cis-k8s/README.md similarity index 100% rename from accuknox-cis-job/README.md rename to accuknox-cis-k8s/README.md diff --git a/accuknox-cis-job/templates/_helpers.tpl b/accuknox-cis-k8s/templates/_helpers.tpl similarity index 100% rename from accuknox-cis-job/templates/_helpers.tpl rename to accuknox-cis-k8s/templates/_helpers.tpl diff --git a/accuknox-cis-job/templates/cis-job.yaml b/accuknox-cis-k8s/templates/cis-job.yaml similarity index 100% rename from accuknox-cis-job/templates/cis-job.yaml rename to accuknox-cis-k8s/templates/cis-job.yaml diff --git a/accuknox-cis-job/values.yaml b/accuknox-cis-k8s/values.yaml similarity index 100% rename from accuknox-cis-job/values.yaml rename to accuknox-cis-k8s/values.yaml From 858293833614a4ce715f01e825de6fe829411483 Mon Sep 17 00:00:00 2001 From: Arun Date: Wed, 27 Mar 2024 15:57:03 +0530 Subject: [PATCH 2/2] action updated --- .github/workflows/action.yaml | 123 ++++++++++++++++++++++++++++++++++ 1 file changed, 123 insertions(+) create mode 100644 .github/workflows/action.yaml diff --git a/.github/workflows/action.yaml b/.github/workflows/action.yaml new file mode 100644 index 0000000..0496309 --- /dev/null +++ b/.github/workflows/action.yaml @@ -0,0 +1,123 @@ +name: Accuknox-Job Workflow +on: + push: + tags: + - "v[0-9]+.[0-9]+.[0-9]+" + - "v[0-9]+.[0-9]+.[0-9]+-*" + pull_request_target: + branches: + - "*" + + +env: + REPO: public.ecr.aws/k9v9d5v2 + CHART_NAME_K8S: accuknox-cis-k8s + CHART_PATH_K8S: ./accuknox-cis-k8s + CHART_REVISION_NAME_K8S: accuknox-cis-k8s + CHART_NAME_K8TLS: accuknox-k8tls-job + CHART_PATH_K8TLS: ./accuknox-k8tls-job + CHART_REVISION_NAME_K8TLS: accuknox-k8tls-job + CHART_NAME_KIEM: accuknox-kiem-job + CHART_PATH_KIEM: ./accuknox-kiem-job + CHART_REVISION_NAME_KIEM: accuknox-kiem-job + AWS_ACCESS_KEY_ID: ${{ secrets.AWS_DEV_ACCESS_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_DEV_SECRET_ID }} + AWS_REGION: us-east-1 + + +jobs: + tag-validate: + runs-on: ubuntu-latest + if: startsWith(github.ref, 'refs/tags/v') + steps: + - uses: rubenesp87/semver-validation-action@0.1.0 + with: + version: ${{ github.ref_name }} + + + chart-validate-k8s: + runs-on: ubuntu-latest + if: always() && !contains(needs.tag-validate.result, 'failure') + needs: [tag-validate] + steps: + - name: Checkout source + uses: accuknox/common-gh-actions/actions/checkout-source@main + - name: Validate helm chart + uses: accuknox/common-gh-actions/actions/helm-check@main + with: + chart-path: ${{ env.CHART_PATH_K8S }} + revision-name: ${{ env.CHART_REVISION_NAME_K8S }} + + chart-validate-k8tls: + runs-on: ubuntu-latest + if: always() && !contains(needs.tag-validate.result, 'failure') + needs: [tag-validate] + steps: + - name: Checkout source + uses: accuknox/common-gh-actions/actions/checkout-source@main + - name: Validate helm chart + uses: accuknox/common-gh-actions/actions/helm-check@main + with: + chart-path: ${{ env.CHART_PATH_K8TLS }} + revision-name: ${{ env.CHART_REVISION_NAME_K8TLS }} + + chart-validate-kiem: + runs-on: ubuntu-latest + if: always() && !contains(needs.tag-validate.result, 'failure') + needs: [tag-validate] + steps: + - name: Checkout source + uses: accuknox/common-gh-actions/actions/checkout-source@main + - name: Validate helm chart + uses: accuknox/common-gh-actions/actions/helm-check@main + with: + chart-path: ${{ env.CHART_PATH_KIEM }} + revision-name: ${{ env.CHART_REVISION_NAME_KIEM}} + + chart-push-k8s: + runs-on: ubuntu-latest + needs: [chart-validate-k8s] + if: startsWith(github.ref, 'refs/tags/v') + steps: + - name: Checkout source + uses: accuknox/common-gh-actions/actions/checkout-source@main + - name: Push helm chart to ECR + uses: accuknox/common-gh-actions/actions/helm-push@main + with: + chart-path: ${{ env.CHART_PATH_K8S }} + version: ${{ github.ref_name }} + ecr-region: ${{ env.AWS_REGION }} + ecr-repo: ${{ env.REPO }} + type: public + + chart-push-k8tls: + runs-on: ubuntu-latest + needs: [chart-validate-k8tls] + if: startsWith(github.ref, 'refs/tags/v') + steps: + - name: Checkout source + uses: accuknox/common-gh-actions/actions/checkout-source@main + - name: Push helm chart to ECR + uses: accuknox/common-gh-actions/actions/helm-push@main + with: + chart-path: ${{ env.CHART_PATH_K8TLS }} + version: ${{ github.ref_name }} + ecr-region: ${{ env.AWS_REGION }} + ecr-repo: ${{ env.REPO }} + type: public + + chart-push-kiem: + runs-on: ubuntu-latest + needs: [chart-validate-kiem] + if: startsWith(github.ref, 'refs/tags/v') + steps: + - name: Checkout source + uses: accuknox/common-gh-actions/actions/checkout-source@main + - name: Push helm chart to ECR + uses: accuknox/common-gh-actions/actions/helm-push@main + with: + chart-path: ${{ env.CHART_PATH_KIEM }} + version: ${{ github.ref_name }} + ecr-region: ${{ env.AWS_REGION }} + ecr-repo: ${{ env.REPO }} + type: public \ No newline at end of file