Skip to content

Commit

Permalink
Multiarch image support for local storage and metrics-server (#628)
Browse files Browse the repository at this point in the history
* Update metrics server to 0.7.0-ck1
* Update rawfile-localpv to 0.8.0-ck4
  • Loading branch information
addyess authored Aug 28, 2024
1 parent f269968 commit 8b9e9ca
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions build-scripts/hack/sync-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ sync:
- source: ghcr.io/canonical/k8s-snap/sig-storage/csi-snapshotter:v8.0.1
target: '{{ env "MIRROR" }}/canonical/k8s-snap/sig-storage/csi-snapshotter:v8.0.1'
type: image
- source: ghcr.io/canonical/metrics-server:0.7.0-ck0
target: '{{ env "MIRROR" }}/canonical/metrics-server:0.7.0-ck0'
- source: ghcr.io/canonical/metrics-server:0.7.0-ck1
target: '{{ env "MIRROR" }}/canonical/metrics-server:0.7.0-ck1'
type: image
- source: ghcr.io/canonical/rawfile-localpv:0.8.0-ck5
target: '{{ env "MIRROR" }}/canonical/rawfile-localpv:0.8.0-ck5'
- source: ghcr.io/canonical/rawfile-localpv:0.8.0-ck4
target: '{{ env "MIRROR" }}/canonical/rawfile-localpv:0.8.0-ck4'
type: image
4 changes: 2 additions & 2 deletions docs/src/snap/howto/install/offline.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ ghcr.io/canonical/k8s-snap/sig-storage/csi-node-driver-registrar:v2.10.1
ghcr.io/canonical/k8s-snap/sig-storage/csi-provisioner:v5.0.1
ghcr.io/canonical/k8s-snap/sig-storage/csi-resizer:v1.11.1
ghcr.io/canonical/k8s-snap/sig-storage/csi-snapshotter:v8.0.1
ghcr.io/canonical/metrics-server:0.7.0-ck0
ghcr.io/canonical/rawfile-localpv:0.8.0-ck5
ghcr.io/canonical/metrics-server:0.7.0-ck1
ghcr.io/canonical/rawfile-localpv:0.8.0-ck4
```

A list of images can also be found in the `images.txt` file when unsquashing the
Expand Down
2 changes: 1 addition & 1 deletion src/k8s/pkg/k8sd/features/localpv/chart.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var (
// imageRepo is the repository to use for Rawfile LocalPV CSI.
imageRepo = "ghcr.io/canonical/rawfile-localpv"
// imageTag is the image tag to use for Rawfile LocalPV CSI.
imageTag = "0.8.0-ck5"
imageTag = "0.8.0-ck4"

// csiNodeDriverImage is the image to use for the CSI node driver.
csiNodeDriverImage = "ghcr.io/canonical/k8s-snap/sig-storage/csi-node-driver-registrar:v2.10.1"
Expand Down
2 changes: 1 addition & 1 deletion src/k8s/pkg/k8sd/features/metrics-server/chart.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ var (
imageRepo = "ghcr.io/canonical/metrics-server"

// imageTag is the image tag to use for metrics-server.
imageTag = "0.7.0-ck0"
imageTag = "0.7.0-ck1"
)

0 comments on commit 8b9e9ca

Please sign in to comment.