-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: switch from an unmaintained kubectl image to the Bitnami one (#…
…125) * chore: switch from an unmaintained kubectl image to the bitnami one * chore: add the new ZK app to the CVE scanning whitelist * fix: remove an unrelated trailing whitespace to make pre-commit happy * chore: remove images used by the old apps from the bundle
- Loading branch information
1 parent
f7f102f
commit 2591f55
Showing
9 changed files
with
57 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# List of applications that should be reported to CVE reporter. Apps in this list | ||
# must match keys in /hack/images.yaml file. | ||
- zookeeper-0.2.15 | ||
- zookeeper-0.2.15-dkp.1 | ||
- kafka-0.25.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: zookeeper-operator-0.2.15-dkp.1-d2iq-defaults | ||
namespace: ${releaseNamespace} | ||
data: | ||
values.yaml: | | ||
--- | ||
hooks: | ||
image: | ||
repository: bitnami/kubectl | ||
tag: 1.27.6 |
4 changes: 4 additions & 0 deletions
4
services/zookeeper-operator/0.2.15-dkp.1/defaults/kustomization.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
resources: | ||
- cm.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
resources: | ||
- zookeeper-operator.yaml | ||
- ../../../helm-repositories/pravega |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
k8sVersionSupport: ">=1.21" |
28 changes: 28 additions & 0 deletions
28
services/zookeeper-operator/0.2.15-dkp.1/zookeeper-operator.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
apiVersion: helm.toolkit.fluxcd.io/v2beta1 | ||
kind: HelmRelease | ||
metadata: | ||
name: zookeeper-operator | ||
namespace: ${releaseNamespace} | ||
spec: | ||
chart: | ||
spec: | ||
chart: zookeeper-operator | ||
sourceRef: | ||
kind: HelmRepository | ||
name: charts.pravega.io | ||
namespace: ${workspaceNamespace} | ||
version: 0.2.15 | ||
interval: 15s | ||
install: | ||
remediation: | ||
retries: 30 | ||
createNamespace: true | ||
upgrade: | ||
remediation: | ||
retries: 30 | ||
releaseName: zookeeper-operator | ||
valuesFrom: | ||
- kind: ConfigMap | ||
name: zookeeper-operator-0.2.15-dkp.1-d2iq-defaults | ||
targetNamespace: ${releaseNamespace} |