diff --git a/.github/workflows/chart.yml b/.github/workflows/chart.yml index a4746ff4..88be3d9a 100644 --- a/.github/workflows/chart.yml +++ b/.github/workflows/chart.yml @@ -23,10 +23,12 @@ jobs: - name: Install Helm uses: azure/setup-helm@v3 + GITHUB_TOKEN: ${{ secrets.TOKEN }} - name: Run chart-releaser uses: helm/chart-releaser-action@v1.5.0 with: charts_dir: charts + config: config.yaml env: CR_TOKEN: "${{ secrets.TOKEN }}" \ No newline at end of file diff --git a/.github/workflows/config.yaml b/.github/workflows/config.yaml new file mode 100644 index 00000000..7363f4ec --- /dev/null +++ b/.github/workflows/config.yaml @@ -0,0 +1,3 @@ +release-name-template: {{ .Name }}-Chart-{{ .Version }} +git-base-url: https://api.github.com/ +git-upload-url: https://uploads.github.com/ \ No newline at end of file diff --git a/charts/k3k/templates/deployment.yaml b/charts/k3k/templates/deployment.yaml index 2395e299..83607210 100644 --- a/charts/k3k/templates/deployment.yaml +++ b/charts/k3k/templates/deployment.yaml @@ -23,12 +23,4 @@ spec: - containerPort: 8080 name: https protocol: TCP - livenessProbe: - httpGet: - path: / - port: https - readinessProbe: - httpGet: - path: / - port: https serviceAccountName: {{ include "k3k.serviceAccountName" . }} \ No newline at end of file