Skip to content
This repository has been archived by the owner on Oct 30, 2024. It is now read-only.

Configure gsoci.azurecr.io as the registry to use by default #3671

Merged
merged 7 commits into from
Dec 19, 2023
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 3 additions & 23 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- [Breaking change] Removed code that allowed switching from AWS-CNI to Cilium. Releases using this AWS-operator can't be upgraded to from v18 releases.
- Configure `gsoci.azurecr.io` as the default container image registry.

## [14.24.1] - 2023-12-07

Expand Down Expand Up @@ -148,7 +149,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Allow externalDNS role to be assumed by any SA containing "external-dns" to allow multiple app deployments.


## [14.12.1] - 2023-04-05

### Added
Expand Down Expand Up @@ -285,7 +285,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- Fix node draining logic during node termination.
- Fix node draining logic during node termination.

## [13.2.4] - 2022-10-27

Expand Down Expand Up @@ -319,7 +319,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Enable Cilium or AWS-CNI conditionally based on the release number.
- Disable external cloud controller manager because of upstream bug affecting 1.23 release.
- Bump `k8scc` to enable authn and authz on `scheduler` and `controller-manager`.-
- Bump `k8scc` to enable authn and authz on `scheduler` and `controller-manager`.

## [13.0.0] - 2022-08-17

Expand Down Expand Up @@ -829,7 +829,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Update `k8scloudconfig` to `v8.0.3`.


## [9.1.1] - 2020-09-23

### Fixed
Expand Down Expand Up @@ -936,7 +935,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Fix failing of ELB collector cache in case there is no ELB in AWS account


## [8.7.1] - 2020-07-08

### Added
Expand All @@ -955,8 +953,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Fix failing go template rendering of KMS encryption content.



## [8.7.0] 2020-06-19

### Added
Expand All @@ -973,8 +969,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fix calico-policy only metrics endpoint.
- Fix race condition in IPAM locking when lock already acquired.



## [8.6.1] 2020-05-21

### Added
Expand All @@ -985,8 +979,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Fix collector panic.



## [8.6.0] 2020-05-21

### Added
Expand All @@ -1004,8 +996,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Check Service Quota endpoint availability for the current AWS region
- Fix RBAC rules for Control Plane CR migration.



## [8.5.0] 2020-05-11

### Added
Expand All @@ -1024,8 +1014,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Fix cluster creation by preventing S3 Object upload race condition.



## [8.4.0] 2020-04-23

### Added
Expand All @@ -1037,8 +1025,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Improve cleanup of `DrainerConfig` CRs after node draining.
- Use release.Revision in Helm chart for Helm 3 support.



## [8.3.0] 2020-04-17

### Added
Expand All @@ -1057,16 +1043,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fix aws operator policy for latest node pools version.
- Make encryption key lookup graceful during cluster creation.



## [8.2.3] 2020-04-06

### Fixed

- Fix error handling when creating Tenant Cluster API clients.



## [8.2.2] - 2020-04-03

### Changed
Expand All @@ -1076,8 +1058,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fix subnet allocation for Availability Zones.
- Switch to AWS CNI



## [8.2.1] - 2020-03-20

- Add PV limit per node. The limit is 20 PV per node.
Expand Down
9 changes: 5 additions & 4 deletions helm/aws-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ tenant:
clusterDomain: cluster.local
networkSetup:
docker:
image: giantswarm/k8s-setup-network-environment:1f4ffc52095ac368847ce3428ea99b257003d9b9
image:
giantswarm/k8s-setup-network-environment:1f4ffc52095ac368847ce3428ea99b257003d9b9
marians marked this conversation as resolved.
Show resolved Hide resolved

ssh:
userList: ""
Expand All @@ -76,9 +77,9 @@ installation:
name: ""

registry:
domain: docker.io
domain: gsoci.azurecr.io
mirrors:
- giantswarm.azurecr.io
- giantswarm.azurecr.io

dockerhub:
token: token
Expand Down Expand Up @@ -121,7 +122,7 @@ securityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
- ALL
privileged: false
runAsNonRoot: true
seccompProfile:
Expand Down