-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(bors): merge pull request #549
549: feat(helm): add list of container images r=tiagolobocastro a=tiagolobocastro Adds a list of container images which are used by the chart. This list is contained in file: charts/images.txt Sometimes the images can't be figured out using templates, and in such cases we need to manually add them. In some cases we might be able to do this using helm variables, which is what we're doing with the localpv provisioner. Github actions have been modified to verify the contents of the images as well as testing them with a live cluster. This is a pretty dumb test that just checks if the live pod images are contained in the images files. Co-authored-by: Tiago Castro <[email protected]>
- Loading branch information
Showing
13 changed files
with
417 additions
and
27 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
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
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 |
---|---|---|
|
@@ -24,4 +24,6 @@ | |
README.md.tmpl | ||
# Nix Shell | ||
*.nix | ||
kubectl-plugin/ | ||
kubectl-plugin/ | ||
# Chart Metadata | ||
images.txt |
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,29 @@ | ||
bats/bats:1.8.2 | ||
docker.io/bitnami/etcd:3.5.6-debian-11-r10 | ||
docker.io/grafana/promtail:2.8.3 | ||
docker.io/openebs/alpine-bash:4.1.0 | ||
docker.io/openebs/alpine-sh:4.1.0 | ||
docker.io/openebs/mayastor-agent-core:develop | ||
docker.io/openebs/mayastor-agent-ha-cluster:develop | ||
docker.io/openebs/mayastor-agent-ha-node:develop | ||
docker.io/openebs/mayastor-api-rest:develop | ||
docker.io/openebs/mayastor-csi-controller:develop | ||
docker.io/openebs/mayastor-csi-node:develop | ||
docker.io/openebs/mayastor-io-engine:develop | ||
docker.io/openebs/mayastor-metrics-exporter-io-engine:develop | ||
docker.io/openebs/mayastor-obs-callhome-stats:develop | ||
docker.io/openebs/mayastor-obs-callhome:develop | ||
docker.io/openebs/mayastor-operator-diskpool:develop | ||
grafana/loki:2.6.1 | ||
nats:2.9.17-alpine | ||
natsio/nats-box:0.13.8 | ||
natsio/nats-server-config-reloader:0.10.1 | ||
natsio/prometheus-nats-exporter:0.11.0 | ||
openebs/linux-utils:4.1.0 | ||
openebs/provisioner-localpv:4.2.0 | ||
registry.k8s.io/sig-storage/csi-attacher:v4.3.0 | ||
registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.10.0 | ||
registry.k8s.io/sig-storage/csi-provisioner:v3.5.0 | ||
registry.k8s.io/sig-storage/csi-resizer:v1.9.3 | ||
registry.k8s.io/sig-storage/csi-snapshotter:v6.3.3 | ||
registry.k8s.io/sig-storage/snapshot-controller:v6.3.3 |
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 |
---|---|---|
|
@@ -11,5 +11,6 @@ pkgs.mkShell { | |
kubernetes-helm-wrapped | ||
semver-tool | ||
yq-go | ||
jq | ||
]; | ||
} |
Oops, something went wrong.