Fixed Relase CI and Polymorphic fixes (#28)
* Fixing Release CI * Fixing Release CI * Fixing ingress error in polymorphic-chartmain
parent
35bdcb08ab
commit
64c14bc300
|
|
@ -19,8 +19,6 @@ jobs:
|
||||||
- 1.22.9
|
- 1.22.9
|
||||||
- 1.23.6
|
- 1.23.6
|
||||||
- 1.24.0
|
- 1.24.0
|
||||||
- 1.25.0
|
|
||||||
- 1.26.0
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,11 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
git config user.name "$GITHUB_ACTOR"
|
git config user.name "$GITHUB_ACTOR"
|
||||||
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
||||||
|
|
||||||
|
- name: Adding bitnamirepo
|
||||||
|
run: |
|
||||||
|
helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||||
|
|
||||||
- name: Run chart-releaser
|
- name: Run chart-releaser
|
||||||
uses: helm/chart-releaser-action@v1.2.0
|
uses: helm/chart-releaser-action@v1.2.0
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ type: application
|
||||||
|
|
||||||
# This is the chart version. This version number should be incremented each time you make changes
|
# This is the chart version. This version number should be incremented each time you make changes
|
||||||
# to the chart and its templates, including the app version.
|
# to the chart and its templates, including the app version.
|
||||||
version: 1.0.1
|
version: 1.0.2
|
||||||
|
|
||||||
# This is the version number of the application being deployed. This version number should be
|
# This is the version number of the application being deployed. This version number should be
|
||||||
# incremented each time you make changes to the application.
|
# incremented each time you make changes to the application.
|
||||||
|
|
|
||||||
|
|
@ -208,9 +208,9 @@ spec:
|
||||||
|
|
||||||
|
|
||||||
{{- if and .ingress (.ingress.enabled | default $.Values.serviceTemplate.ingress.enabled) }}
|
{{- if and .ingress (.ingress.enabled | default $.Values.serviceTemplate.ingress.enabled) }}
|
||||||
|
|
||||||
{{- $fullName := printf "%s-%s-svc" $.Release.Name (.name | default $.Values.serviceTemplate.name) -}}
|
|
||||||
---
|
---
|
||||||
|
{{- $fullName := printf "%s-%s-svc" $.Release.Name (.name | default $.Values.serviceTemplate.name) -}}
|
||||||
|
|
||||||
apiVersion: {{ include "ingress.apiVersion" $ }}
|
apiVersion: {{ include "ingress.apiVersion" $ }}
|
||||||
kind: Ingress
|
kind: Ingress
|
||||||
metadata:
|
metadata:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue