Skip to content

Commit

Permalink
Switch container registry to gsoci.azurecr.io (#262)
Browse files Browse the repository at this point in the history
* Switch container registry to gsoci.azurecr.io

* update values schema

* update readme

* update image location for etcd
  • Loading branch information
glitchcrab authored Feb 26, 2024
1 parent 52819b4 commit 1e61748
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Switch container registry to `gsoci.azurecr.io`.

## [0.14.6] - 2024-02-19

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions helm/cluster-cloud-director/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Properties within the `.internal` top-level object
| `internal.rdeId` | **Runtime defined entity (RDE) identifier** - This cluster's RDE ID in the VCD API.|**Type:** `string`<br/>|
| `internal.sandboxContainerImage` | **Sandbox Container image (pause container)**|**Type:** `object`<br/>|
| `internal.sandboxContainerImage.name` | **Repository**|**Type:** `string`<br/>**Default:** `"giantswarm/pause"`|
| `internal.sandboxContainerImage.registry` | **Registry**|**Type:** `string`<br/>**Default:** `"quay.io"`|
| `internal.sandboxContainerImage.registry` | **Registry**|**Type:** `string`<br/>**Default:** `"gsoci.azurecr.io"`|
| `internal.sandboxContainerImage.tag` | **Tag**|**Type:** `string`<br/>**Default:** `"3.9"`|
| `internal.skipRde` | **Skip RDE** - Set to true if the API schema extension is installed in the correct version in VCD to create CAPVCD entities in the API. Set to false otherwise.|**Type:** `boolean`<br/>|
| `internal.useAsManagementCluster` | **Display as management cluster**|**Type:** `boolean`<br/>**Default:** `false`|
Expand Down Expand Up @@ -99,7 +99,7 @@ Properties within the `.controlPlane` top-level object
| `controlPlane.dns.imageRepository` | **Repository**|**Type:** `string`<br/>**Example:** `"projects.registry.vmware.com/tkg"`<br/>**Default:** `"projects.registry.vmware.com/tkg"`|
| `controlPlane.dns.imageTag` | **Tag**|**Type:** `string`<br/>**Example:** `"v1.7.0_vmware.12"`<br/>**Default:** `"v1.7.0_vmware.12"`|
| `controlPlane.etcd` | **Etcd container image**|**Type:** `object`<br/>|
| `controlPlane.etcd.imageRepository` | **Repository**|**Type:** `string`<br/>**Example:** `"giantswarm"`<br/>**Default:** `"giantswarm"`|
| `controlPlane.etcd.imageRepository` | **Repository**|**Type:** `string`<br/>**Example:** `"gsoci.azurecr.io/giantswarm"`<br/>**Default:** `"gsoci.azurecr.io/giantswarm"`|
| `controlPlane.etcd.imageTag` | **Tag**|**Type:** `string`<br/>**Example:** `"3.5.4-0-k8s"`<br/>**Default:** `"3.5.4-0-k8s"`|
| `controlPlane.image` | **Node container image**|**Type:** `object`<br/>|
| `controlPlane.image.repository` | **Repository**|**Type:** `string`<br/>**Example:** `"projects.registry.vmware.com/tkg"`<br/>**Default:** `"projects.registry.vmware.com/tkg"`|
Expand All @@ -125,7 +125,7 @@ Used by cluster-shared library chart to configure coredns in-cluster.
| **Property** | **Description** | **More Details** |
| :----------- | :-------------- | :--------------- |
| `kubectlImage.name` | **Repository**|**Type:** `string`<br/>**Default:** `"giantswarm/kubectl"`|
| `kubectlImage.registry` | **Registry**|**Type:** `string`<br/>**Default:** `"quay.io"`|
| `kubectlImage.registry` | **Registry**|**Type:** `string`<br/>**Default:** `"gsoci.azurecr.io"`|
| `kubectlImage.tag` | **Tag**|**Type:** `string`<br/>**Default:** `"1.23.5"`|

### Metadata
Expand Down
8 changes: 4 additions & 4 deletions helm/cluster-cloud-director/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -501,9 +501,9 @@
"type": "string",
"title": "Repository",
"examples": [
"giantswarm"
"gsoci.azurecr.io/giantswarm"
],
"default": "giantswarm"
"default": "gsoci.azurecr.io/giantswarm"
},
"imageTag": {
"type": "string",
Expand Down Expand Up @@ -723,7 +723,7 @@
"registry": {
"type": "string",
"title": "Registry",
"default": "quay.io"
"default": "gsoci.azurecr.io"
},
"tag": {
"type": "string",
Expand Down Expand Up @@ -758,7 +758,7 @@
"registry": {
"type": "string",
"title": "Registry",
"default": "quay.io"
"default": "gsoci.azurecr.io"
},
"tag": {
"type": "string",
Expand Down
6 changes: 3 additions & 3 deletions helm/cluster-cloud-director/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ controlPlane:
imageRepository: projects.registry.vmware.com/tkg
imageTag: v1.7.0_vmware.12
etcd:
imageRepository: giantswarm
imageRepository: gsoci.azurecr.io/giantswarm
imageTag: 3.5.4-0-k8s
image:
repository: projects.registry.vmware.com/tkg
Expand Down Expand Up @@ -57,12 +57,12 @@ internal:
featureGates: []
sandboxContainerImage:
name: giantswarm/pause
registry: quay.io
registry: gsoci.azurecr.io
tag: "3.9"
useAsManagementCluster: false
kubectlImage:
name: giantswarm/kubectl
registry: quay.io
registry: gsoci.azurecr.io
tag: 1.23.5
metadata:
preventDeletion: false
Expand Down

0 comments on commit 1e61748

Please sign in to comment.