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

chore: replace kubebuilder kube-rbac-proxy #57

Merged
merged 1 commit into from
Dec 9, 2024
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
12 changes: 12 additions & 0 deletions .github/workflows/lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,15 @@ jobs:
if: steps.list-changed.outputs.changed == 'true'
- name: Run chart-testing (install)
run: ct install --config ./default.ct.yaml

linter-artifacthub:
runs-on: ubuntu-latest
container:
image: artifacthub/ah
options: --user root
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run ah lint
working-directory: ./charts/
run: ah lint
4 changes: 2 additions & 2 deletions charts/aergia/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ kubeVersion: ">= 1.23.0-0"

type: application

version: 0.6.1
version: 0.6.2

appVersion: v0.4.2

annotations:
artifacthub.io/changes: |
- kind: changed
description: update aergia-controller appVersion to v0.4.2
description: interim use of bitnami/kube-rbac-proxy to replace deprecated kubebuilder version
4 changes: 2 additions & 2 deletions charts/aergia/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ affinity: {}
# this sidecar runs in the same pod as dbaas-operator
kubeRBACProxy:
image:
repository: gcr.io/kubebuilder/kube-rbac-proxy
repository: bitnami/kube-rbac-proxy
pullPolicy: IfNotPresent
tag: v0.4.1
tag: 0.18.2

securityContext: {}

Expand Down
2 changes: 1 addition & 1 deletion charts/dbaas-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ kubeVersion: ">= 1.19.0-0"

type: application

version: 0.3.0
version: 0.3.1

appVersion: v0.3.0
4 changes: 2 additions & 2 deletions charts/dbaas-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ affinity: {}
# this sidecar runs in the same pod as dbaas-operator
kubeRBACProxy:
image:
repository: gcr.io/kubebuilder/kube-rbac-proxy
repository: bitnami/kube-rbac-proxy
pullPolicy: IfNotPresent
tag: v0.4.1
tag: 0.18.2

securityContext: {}

Expand Down
2 changes: 1 addition & 1 deletion charts/principio/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ maintainers:

type: application

version: 0.1.0
version: 0.1.1

appVersion: v0.2.0
4 changes: 2 additions & 2 deletions charts/principio/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ affinity: {}
# this is a sidecar in the same pod as the principio container
kubeRBACProxy:
image:
repository: gcr.io/kubebuilder/kube-rbac-proxy
repository: bitnami/kube-rbac-proxy
pullPolicy: IfNotPresent
tag: v0.4.1
tag: 0.18.2

securityContext: {}

Expand Down
Loading