Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[nats helm] Release 1.0.0 chart #770

Merged
merged 19 commits into from
Aug 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/nats-helm.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: nats-helm

on:
pull_request:
paths:
- 'helm/charts/nats/**'
- .github/workflows/nats-helm.yml

jobs:
test:
runs-on: ubuntu-latest
steps:

- name: Setup repo
uses: actions/checkout@v3

- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
check-latest: true
cache: true
cache-dependency-path: helm/charts/nats/test/go.sum

- name: Test
working-directory: helm/charts/nats/test
run: go test
1 change: 1 addition & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
push:
branches:
- main
- helm-nats-1.x

jobs:
release:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
pull_request:
paths:
- 'helm/charts/**'
- '!helm/charts/index.yaml'
- '.github/workflows/test.yaml'

jobs:
Expand All @@ -15,9 +14,9 @@ jobs:
fail-fast: false
matrix:
k8s:
- "1.23"
- "1.22"
- "1.21"
- "1.26"
- "1.25"
- "1.24"
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -57,6 +56,8 @@ jobs:
helm/charts/stan \
-type f \
-not -name "*.md" \
-not -name "*.go" \
-not -name "_tplYaml.tpl" \
| xargs grep -E "^[ ]*\{[^\}]+nindent $i" \
| grep -Ev "^[^:]+:[ ]{$i}\{"; then
echo "invalid nindent $i found; nindent should match template indentation"
Expand All @@ -68,8 +69,7 @@ jobs:
- name: Create k8s cluster
run: |-
sudo snap install microk8s --channel="${{ matrix.k8s }}/stable" --classic
sudo microk8s.enable dns
sudo microk8s.enable storage
sudo microk8s.enable dns hostpath-storage
sudo microk8s.kubectl wait --for=condition=ready --timeout=60s node --all
sudo microk8s.kubectl wait --for=condition=ready --timeout=120s --namespace=kube-system pod --all
mkdir -p ~/.kube
Expand Down
4 changes: 4 additions & 0 deletions helm/charts/nats/.helmignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,13 @@
*.swp
*.bak
*.tmp
*.orig
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/

# template tests
/test
5 changes: 2 additions & 3 deletions helm/charts/nats/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
apiVersion: v2
appVersion: 2.9.20
description: A Helm chart for the NATS.io High Speed Cloud Native Distributed Communications
Technology.
description: A Helm chart for the NATS.io High Speed Cloud Native Distributed Communications Technology.
name: nats
keywords:
- nats
- messaging
- cncf
version: 0.19.17
version: 1.0.0
home: http://github.com/nats-io/k8s
maintainers:
- email: [email protected]
Expand Down
Loading