Skip to content

Commit

Permalink
chanhe structure again
Browse files Browse the repository at this point in the history
  • Loading branch information
ata-no-one committed Dec 15, 2023
1 parent 24fae14 commit 1f1b797
Show file tree
Hide file tree
Showing 13 changed files with 53 additions and 1 deletion.
52 changes: 52 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Release Charts

on:
push:
branches:
- main
tags:
- "*"
pull_request:
branches:
- main

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Install Helm
uses: azure/setup-helm@v3
with:
version: v3.4.0

- name: Add deps
run: |
helm repo add gdscan https://gdatasoftwareag.github.io/gdscan/
helm repo add bitnami https://charts.bitnami.com/bitnami/
- name: Install python
uses: actions/setup-python@v4
with:
python-version: 3.7

- name: Set up chart-testing
uses: helm/[email protected]

- name: Run chart-testing (lint)
run: ct lint --validate-maintainers=false --charts charts/vaas

- name: Run chart-releaser
if: github.ref == 'refs/heads/main'
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.BOT_SECRET }}"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ metadata:
name: registry
namespace: {{ .Release.Namespace }}
data:
.dockerconfigjson: {{ required "You need to set the dockerconfigjson for the private registry" .Values.secret.dockerconfigjson }}
.dockerconfigjson: {{ required "You need to set the dockerconfigjson for the private registry" .Values.gateway.secret.dockerconfigjson }}
type: kubernetes.io/dockerconfigjson
{{- end -}}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 1f1b797

Please sign in to comment.