Skip to content

Commit

Permalink
Adding Release Action
Browse files Browse the repository at this point in the history
  • Loading branch information
nniehoff committed Sep 13, 2021
1 parent 3900d6b commit 8484bea
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
14 changes: 14 additions & 0 deletions .github/release-chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: release
on:
push:
tags: '*'

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Publish Helm charts
uses: stefanprodan/helm-gh-pages@master
with:
token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion charts/nautobot/templates/celery-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ spec:
{{- include "common.tplvalues.render" (dict "value" .Values.celeryWorker.initContainers "context" $) | nindent 8 }}
{{- end }}
containers:
- name: nautobot
- name: nautobot-celery
image: {{ template "nautobot.image" . }}
imagePullPolicy: {{ .Values.nautobot.image.pullPolicy }}
{{- if .Values.celeryWorker.lifecycleHooks }}
Expand Down
2 changes: 1 addition & 1 deletion charts/nautobot/templates/rq-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ spec:
{{- include "common.tplvalues.render" (dict "value" .Values.rqWorker.initContainers "context" $) | nindent 8 }}
{{- end }}
containers:
- name: nautobot
- name: nautobot-rq
image: {{ template "nautobot.image" . }}
imagePullPolicy: {{ .Values.nautobot.image.pullPolicy }}
{{- if .Values.rqWorker.lifecycleHooks }}
Expand Down
6 changes: 4 additions & 2 deletions charts/nautobot/values.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## nautobot service parameters
## @section Nautobot Service Parameters

## Nautobot service parameters
##
service:
## @param service.type nautobot service type
Expand Down Expand Up @@ -42,7 +44,7 @@ service:
##
annotations: {}

## @section nautobot Parameters
## @section Nautobot Parameters

## Nautobot Server
##
Expand Down

0 comments on commit 8484bea

Please sign in to comment.