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(deps): Update to secretgen-controller 0.17.0 #12

Merged
merged 1 commit into from
Feb 24, 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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ jobs:
registry-server: ghcr.io
registry-username: ${{ github.actor }}
image: ${{ github.repository }}
version: 0.16.0
version: 0.17.0
secrets:
pull-request-token: ${{ secrets.GH_ORG_PAT }}
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Integration Tests
strategy:
matrix:
k8s_version: [v1.26, v1.27, v1.28]
k8s_version: [v1.27, v1.28, v1.29]
permissions:
contents: read
uses: kadras-io/github-reusable-workflows/.github/workflows/carvel-package-test-integration.yml@main
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
K8S_VERSION=v1.28
K8S_VERSION=v1.29

# Build package configuration
build: package
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ A Carvel package for [secretgen-controller](https://github.com/carvel-dev/secret

### Prerequisites

* Kubernetes 1.26+
* Kubernetes 1.27+
* Carvel [`kctrl`](https://carvel.dev/kapp-controller/docs/latest/install/#installing-kapp-controller-cli-kctrl) CLI.
* Carvel [kapp-controller](https://carvel.dev/kapp-controller) deployed in your Kubernetes cluster. You can install it with Carvel [`kapp`](https://carvel.dev/kapp/docs/latest/install) (recommended choice) or `kubectl`.

Expand Down
10 changes: 5 additions & 5 deletions package/config/upstream/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -801,11 +801,11 @@ metadata:
- git:
dirty: true
remoteURL: https://github.com/carvel-dev/secretgen-controller
sha: d806899d96fcb5a07ff2e38f93e37884a3db2b1d
sha: 8b4e61a29dfd282f659ef1ffb96a779920260553
tags:
- v0.16.0
url: ghcr.io/carvel-dev/secretgen-controller@sha256:59ec05ce5847bfd70c8e04f08b5195e918c8f6fbb947ffc91b456494a2958fd5
secretgen-controller.carvel.dev/version: v0.16.0
- v0.17.0
url: ghcr.io/carvel-dev/secretgen-controller@sha256:e1da9e311956ae4cbb8ca434d243c947e2d66770d06689da840ffc77988babdc
secretgen-controller.carvel.dev/version: v0.17.0
name: secretgen-controller
namespace: secretgen-controller
spec:
Expand All @@ -820,7 +820,7 @@ spec:
app: secretgen-controller
spec:
containers:
- image: ghcr.io/carvel-dev/secretgen-controller@sha256:59ec05ce5847bfd70c8e04f08b5195e918c8f6fbb947ffc91b456494a2958fd5
- image: ghcr.io/carvel-dev/secretgen-controller@sha256:e1da9e311956ae4cbb8ca434d243c947e2d66770d06689da840ffc77988babdc
name: secretgen-controller
resources:
requests:
Expand Down
4 changes: 2 additions & 2 deletions package/vendir.lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: vendir.k14s.io/v1alpha1
directories:
- contents:
- githubRelease:
tag: v0.16.0
url: https://api.github.com/repos/carvel-dev/secretgen-controller/releases/133131122
tag: v0.17.0
url: https://api.github.com/repos/carvel-dev/secretgen-controller/releases/138771550
path: .
path: config/upstream
kind: LockConfig
2 changes: 1 addition & 1 deletion package/vendir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ directories:
- githubRelease:
disableAutoChecksumValidation: true
slug: carvel-dev/secretgen-controller
tag: v0.16.0
tag: v0.17.0
includePaths:
- release.yml
path: .
Expand Down
4 changes: 2 additions & 2 deletions test/setup/kind/v1.27/kind-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
- role: control-plane
image: kindest/node:v1.27.3
image: kindest/node:v1.27.11
- role: worker
image: kindest/node:v1.27.3
image: kindest/node:v1.27.11
4 changes: 2 additions & 2 deletions test/setup/kind/v1.28/kind-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
- role: control-plane
image: kindest/node:v1.28.0
image: kindest/node:v1.28.7
- role: worker
image: kindest/node:v1.28.0
image: kindest/node:v1.28.7
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
- role: control-plane
image: kindest/node:v1.26.6
image: kindest/node:v1.29.2
- role: worker
image: kindest/node:v1.26.6
image: kindest/node:v1.29.2
Loading