Skip to content

Commit

Permalink
chore(deps): update gcr.io/kubebuilder/kube-rbac-proxy docker tag to …
Browse files Browse the repository at this point in the history
…v0.13.1 (#325)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| gcr.io/kubebuilder/kube-rbac-proxy | patch | `v0.13.0` -> `v0.13.1` |

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/diranged/oz).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS40Mi40IiwidXBkYXRlZEluVmVyIjoiMzkuNDIuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Matt Wise <[email protected]>
  • Loading branch information
renovate[bot] and diranged authored Dec 3, 2024
1 parent 51515e6 commit a295fa6
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ jobs:
publish: false

helm-docs:
needs: build
needs: detect-noop
if: needs.detect-noop.outputs.noop != 'true'
uses: ./.github/workflows/helm-docs.yaml

helm-test:
needs: build
needs: detect-noop
if: needs.detect-noop.outputs.noop != 'true'
uses: ./.github/workflows/helm-test.yaml
21 changes: 19 additions & 2 deletions .github/workflows/helm-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,29 @@ on:
jobs:
helm-docs:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4
with:
fetch-depth: 0 # required for ct helm tool
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}

- name: Set up Go
uses: actions/setup-go@v3

- name: Run helm-docs
run: make helm-docs
run: make helm-docs || true

- name: Find mutations
id: self_mutation
run: |-
git add .
git diff --staged --patch --exit-code || echo "self_mutation_happened=true" >> "$GITHUB_OUTPUT"
- uses: stefanzweifel/git-auto-commit-action@v5
if: steps.self_mutation.outputs.self_mutation_happened
with:
commit_message: Automated Commit
2 changes: 1 addition & 1 deletion charts/oz/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Kubernetes: `>=1.26.0-0`
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| controllerManager.kubeRbacProxy.image.repository | string | `"gcr.io/kubebuilder/kube-rbac-proxy"` | |
| controllerManager.kubeRbacProxy.image.tag | string | `"v0.13.0"` | |
| controllerManager.kubeRbacProxy.image.tag | string | `"v0.13.1"` | |
| controllerManager.kubeRbacProxy.resources.limits.cpu | string | `"500m"` | |
| controllerManager.kubeRbacProxy.resources.limits.memory | string | `"128Mi"` | |
| controllerManager.kubeRbacProxy.resources.requests.cpu | string | `"5m"` | |
Expand Down
2 changes: 1 addition & 1 deletion charts/oz/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ controllerManager:
kubeRbacProxy:
image:
repository: gcr.io/kubebuilder/kube-rbac-proxy
tag: v0.13.0
tag: v0.13.1
resources:
limits:
cpu: 500m
Expand Down
1 change: 1 addition & 0 deletions ct.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ chart-dirs:
- charts
helm-extra-args: --timeout 600s
target-branch: main
check-version-increment: false

0 comments on commit a295fa6

Please sign in to comment.