Skip to content

Commit

Permalink
Use new registry (#482)
Browse files Browse the repository at this point in the history
  • Loading branch information
fiunchinho authored Jan 23, 2024
1 parent a294ac4 commit 15a53ee
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Use `gsoci.azurecr.io` for `kubeadm` container images.
- Use `gsoci.azurecr.io` for sandbox container image (pause container).
- Update `coredns` to `1.21.0` to use `gsoci.azurecr.io`.
- Update `aws-cloud-controller-manager` to `1.25.14-gs2` to use `gsoci.azurecr.io`.

## [0.58.0] - 2024-01-22

### Changed
Expand Down
4 changes: 2 additions & 2 deletions helm/cluster-aws/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ For Giant Swarm internal use only, not stable, or not supported by UIs.
| `internal.nodePools.PATTERN.subnetTags[*].*` | **Tag value**|**Type:** `string`<br/>**Key pattern:**<br/>`PATTERN`=`^[a-z0-9][-a-z0-9]{3,18}[a-z0-9]$`<br/>**Value pattern:** `^[ a-zA-Z0-9\._:/=+-@]+$`<br/>|
| `internal.sandboxContainerImage` | **Sandbox image** - The image used by sandbox / 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.teleport` | **Teleport**|**Type:** `object`<br/>|
| `internal.teleport.enabled` | **Enable teleport**|**Type:** `boolean`<br/>**Default:** `true`|
Expand All @@ -227,7 +227,7 @@ Properties within the `.kubectlImage` top-level object
| **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
2 changes: 1 addition & 1 deletion helm/cluster-aws/templates/_control_plane.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ spec:
{{- include "nodeDirectories" $ | nindent 14 }}
clusterConfiguration:
# Avoid accessibility issues (e.g. on private clusters) and potential future rate limits for the default `registry.k8s.io`
imageRepository: docker.io/giantswarm
imageRepository: gsoci.azurecr.io/giantswarm

apiServer:
timeoutForControlPlane: 20m
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ spec:
chart: aws-cloud-controller-manager-app
# used by renovate
# repo: giantswarm/aws-cloud-controller-manager-app
version: v1.24.1-gs8
version: v1.25.14-gs2
sourceRef:
kind: HelmRepository
name: {{ include "resource.default.name" $ }}-default
Expand Down
2 changes: 1 addition & 1 deletion helm/cluster-aws/templates/coredns-helmrelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ spec:
chart: coredns-app
# used by renovate
# repo: giantswarm/coredns-app
version: 1.20.0
version: 1.21.0
sourceRef:
kind: HelmRepository
name: {{ include "resource.default.name" $ }}-default
Expand Down
4 changes: 2 additions & 2 deletions helm/cluster-aws/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1056,7 +1056,7 @@
"registry": {
"type": "string",
"title": "Registry",
"default": "quay.io"
"default": "gsoci.azurecr.io"
},
"tag": {
"type": "string",
Expand Down Expand Up @@ -1100,7 +1100,7 @@
"registry": {
"type": "string",
"title": "Registry",
"default": "quay.io"
"default": "gsoci.azurecr.io"
},
"tag": {
"type": "string",
Expand Down
4 changes: 2 additions & 2 deletions helm/cluster-aws/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,13 @@ internal:
minSize: 3
sandboxContainerImage:
name: giantswarm/pause
registry: quay.io
registry: gsoci.azurecr.io
tag: "3.9"
teleport:
enabled: true
proxyAddr: teleport.giantswarm.io:443
version: 14.1.3
kubectlImage:
name: giantswarm/kubectl
registry: quay.io
registry: gsoci.azurecr.io
tag: 1.23.5

0 comments on commit 15a53ee

Please sign in to comment.