Skip to content

Commit

Permalink
Bump Helm Chart version to 0.1.15
Browse files Browse the repository at this point in the history
  • Loading branch information
lbeckman314 committed Dec 19, 2024
1 parent 3872c5c commit e58dbbb
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 13 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: 1.21
go-version: 1.22

- name: Check out code
uses: actions/checkout@v2
Expand All @@ -23,6 +23,7 @@ jobs:
key: ${{ runner.os }}-funnel-bin-${{ hashFiles('**/go.sum') }}-${{ github.ref }}
restore-keys: |
${{ runner.os }}-funnel-bin-${{ github.ref }}
${{ runner.os }}-funnel-bin-
- name: Build Funnel (if cache doesn't exist)
run: |
Expand Down
2 changes: 1 addition & 1 deletion deployments/kubernetes/helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type: application
# 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.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.14
version: 0.1.15

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
16 changes: 8 additions & 8 deletions deployments/kubernetes/helm/templates/clusterrole.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: funnel-clusterrole
name: {{ .Release.Namespace }}-{{ .Release.Name }}-clusterrole
rules:
- apiGroups: [""]
resources:
- persistentvolumes
- persistentvolumes
verbs:
- get
- list
- watch
- create
- update
- delete
- get
- list
- watch
- create
- update
- delete
6 changes: 3 additions & 3 deletions deployments/kubernetes/helm/templates/clusterrolebinding.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: funnel-clusterrolebinding
name: {{ .Release.Namespace }}-{{ .Release.Name }}-clusterrolebinding
subjects:
- kind: ServiceAccount
name: funnel-sa
namespace: {{ .Release.Namespace }}
namespace: {{ .Release.Namespace }}
roleRef:
kind: ClusterRole
name: funnel-clusterrole
name: {{ .Release.Namespace }}-{{ .Release.Name }}-clusterrole
apiGroup: rbac.authorization.k8s.io
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ require (
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
github.com/montanaflynn/stats v0.7.1 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/muonsoft/openapi-mock v0.3.9 // indirect
github.com/nsf/termbox-go v1.1.1 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.1.0 // indirect
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,8 @@ github.com/morikuni/aec v1.0.0 h1:nP9CBfwrvYnBRgY6qfDQkygYDmYwOilePFkwzv4dU8A=
github.com/morikuni/aec v1.0.0/go.mod h1:BbKIizmSmc5MMPqRYbxO4ZU0S0+P200+tUnFx7PXmsc=
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA=
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ=
github.com/muonsoft/openapi-mock v0.3.9 h1:MNeqzwk6QzGTtnhvyRyDIywvt1YdCIvBEbtENiOnXmo=
github.com/muonsoft/openapi-mock v0.3.9/go.mod h1:M5zGO4+q2BSS+KKsZtHX+lBFKMJ5QTQ0PdK2SdhHHc4=
github.com/ncw/swift v1.0.53 h1:luHjjTNtekIEvHg5KdAFIBaH7bWfNkefwFnpDffSIks=
github.com/ncw/swift v1.0.53/go.mod h1:23YIA4yWVnGwv2dQlN4bB7egfYX6YLn0Yo/S6zZO/ZM=
github.com/nsf/termbox-go v1.1.1 h1:nksUPLCb73Q++DwbYUBEglYBRPZyoXJdrj5L+TkjyZY=
Expand Down

0 comments on commit e58dbbb

Please sign in to comment.