Skip to content

Commit

Permalink
[tigera-operator] Update to v1.22.0 (#332)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevehipwell committed Oct 4, 2021
1 parent 33ac6b3 commit 991ff6d
Show file tree
Hide file tree
Showing 16 changed files with 1,271 additions and 29 deletions.
22 changes: 16 additions & 6 deletions charts/tigera-operator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Deprecated
### Removed -->

## 1.3.0 2021-10-04

### Added

- Remaining _Tigera Operator_ CRDs.

### Changed

- Update _Tigera Operator_ image to [v1.22.0](https://github.com/tigera/operator/releases/tag/v1.22.0).

## 1.2.3 2021-10-04

### Changed

- Update _tigera-operator_ image to [v1.21.3](https://github.com/tigera/operator/releases/tag/v1.21.3).
- Update _Tigera Operator_ image to [v1.21.3](https://github.com/tigera/operator/releases/tag/v1.21.3).

## 1.2.2 2021-10-04

### Changed

- Update _tigera-operator_ image to [v1.21.2](https://github.com/tigera/operator/releases/tag/v1.21.2).
- Update _Tigera Operator_ image to [v1.21.2](https://github.com/tigera/operator/releases/tag/v1.21.2).

## 1.2.1 2021-09-02

Expand All @@ -46,13 +56,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- Update _tigera-operator_ image to [v1.21.1](https://github.com/tigera/operator/releases/tag/v1.21.1).
- Update _Tigera Operator_ image to [v1.21.1](https://github.com/tigera/operator/releases/tag/v1.21.1).

## 1.1.0 2021-08-24

### Changed

- Updated `tigera-operator` image to [v1.21.0](https://github.com/tigera/operator/releases/tag/v1.21.0).
- Updated _Tigera Operator_ image to [v1.21.0](https://github.com/tigera/operator/releases/tag/v1.21.0).
- Enable customisation of deployment `hostNetwork` & `dnsPolicy` for users who aren't using Calico as the CNI.

## 1.0.5 2021-08-11
Expand All @@ -65,7 +75,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- Fixed operator namespace support.
- Fixed _Tigera Operator_ namespace support.

## 1.0.3 2021-08-04

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

### Added

- Initial release based on [v1.20.0](https://github.com/tigera/operator/releases/tag/v1.20.0).
- Initial release based on _Tigera Operator_ [v1.20.0](https://github.com/tigera/operator/releases/tag/v1.20.0).
8 changes: 5 additions & 3 deletions charts/tigera-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: tigera-operator
description: Helm chart for the Tigera Operator for Calico.
type: application
version: 1.2.3
appVersion: 1.21.3
version: 1.3.0
appVersion: 1.22.0
keywords:
- kubernetes
- calico
Expand All @@ -23,5 +23,7 @@ maintainers:
email: steve.hipwell@gmail.com
annotations:
artifacthub.io/changes: |
- kind: added
description: "Remaining _Tigera Operator_ CRDs."
- kind: changed
description: "Update tigera-operator image to v1.21.3."
description: "Update Tigera Operator image to v1.22.0."
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: amazoncloudintegrations.operator.tigera.io
spec:
group: operator.tigera.io
names:
kind: AmazonCloudIntegration
listKind: AmazonCloudIntegrationList
plural: amazoncloudintegrations
singular: amazoncloudintegration
scope: Cluster
versions:
- name: v1
schema:
openAPIV3Schema:
description:
AmazonCloudIntegration is the Schema for the amazoncloudintegrations
API
properties:
apiVersion:
description:
"APIVersion defines the versioned schema of this representation
of an object. Servers should convert recognized schemas to the latest
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources"
type: string
kind:
description:
"Kind is a string value representing the REST resource this
object represents. Servers may infer this from the endpoint the client
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
type: string
metadata:
type: object
spec:
description: AmazonCloudIntegrationSpec defines the desired state of AmazonCloudIntegration
properties:
awsRegion:
description: AWSRegion is the region in which your cluster is located.
type: string
defaultPodMetadataAccess:
description:
"DefaultPodMetadataAccess defines what the default behavior
will be for accessing the AWS metadata service from a pod. Default:
Denied"
enum:
- Allowed
- Denied
type: string
enforcedSecurityGroupID:
description:
EnforcedSecurityGroupID is the ID of the Security Group
which will be applied to all ENIs that are on a host that is also
part of the Kubernetes cluster.
type: string
nodeSecurityGroupIDs:
description:
NodeSecurityGroupIDs is a list of Security Group IDs
that all nodes and masters will be in.
items:
type: string
type: array
podSecurityGroupID:
description:
PodSecurityGroupID is the ID of the Security Group which
all pods should be placed in by default.
type: string
sqsURL:
description:
SQSURL is the SQS URL needed to access the Simple Queue
Service.
type: string
trustEnforcedSecurityGroupID:
description:
TrustEnforcedSecurityGroupID is the ID of the Security
Group which will be applied to all ENIs in the VPC.
type: string
vpcs:
description:
VPCS is a list of VPC IDs to monitor for ENIs and Security
Groups, only one is supported.
items:
type: string
type: array
required:
- trustEnforcedSecurityGroupID
type: object
status:
description:
AmazonCloudIntegrationStatus defines the observed state of
AmazonCloudIntegration
properties:
state:
description: State provides user-readable status.
type: string
type: object
type: object
served: true
storage: true
subresources:
status: {}
- name: v1beta1
schema:
openAPIV3Schema:
description:
AmazonCloudIntegration is the Schema for the amazoncloudintegrations
API
properties:
apiVersion:
description:
"APIVersion defines the versioned schema of this representation
of an object. Servers should convert recognized schemas to the latest
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources"
type: string
kind:
description:
"Kind is a string value representing the REST resource this
object represents. Servers may infer this from the endpoint the client
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
type: string
metadata:
type: object
spec:
description: AmazonCloudIntegrationSpec defines the desired state of AmazonCloudIntegration
type: object
status:
description:
AmazonCloudIntegrationStatus defines the observed state of
AmazonCloudIntegration
type: object
type: object
served: false
storage: false
subresources:
status: {}
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ spec:
description:
"APIVersion defines the versioned schema of this representation
of an object. Servers should convert recognized schemas to the latest
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources"
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources"
type: string
kind:
description:
"Kind is a string value representing the REST resource this
object represents. Servers may infer this from the endpoint the client
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
type: string
metadata:
type: object
Expand Down
Loading

0 comments on commit 991ff6d

Please sign in to comment.