diff --git a/CHANGELOG.md b/CHANGELOG.md index ef2dd7df2..8af409ffb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ numbering uses [semantic versioning](http://semver.org). ## Next Release +## v6.5.20 + +- Update Ambassador to version v1.11.2: [CHANGELOG](https://github.com/datawire/ambassador/blob/master/CHANGELOG.md) + ## v6.5.19 - Make all `livenessProbe` and `readinessProbe` configurations available to the values file diff --git a/Chart.yaml b/Chart.yaml index 5e6e52db6..97c8efa6f 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v1 -appVersion: 1.11.1 -ossVersion: 1.11.1 +appVersion: 1.11.2 +ossVersion: 1.11.2 description: A Helm chart for Datawire Ambassador name: ambassador -version: 6.5.19 +version: 6.5.20 icon: https://www.getambassador.io/images/logo.png home: https://www.getambassador.io/ sources: diff --git a/README.md b/README.md index 478c40611..d325f9fce 100755 --- a/README.md +++ b/README.md @@ -100,7 +100,7 @@ The following tables lists the configurable parameters of the Ambassador chart a | `envRaw` | Additional environment variables in raw YAML format | `{}` | | `image.pullPolicy` | Ambassador image pull policy | `IfNotPresent` | | `image.repository` | Ambassador image | `docker.io/datawire/aes` | -| `image.tag` | Ambassador image tag | `1.11.1` | +| `image.tag` | Ambassador image tag | `1.11.2` | | `imagePullSecrets` | Image pull secrets | `[]` | | `namespace.name` | Set the `AMBASSADOR_NAMESPACE` environment variable | `metadata.namespace` | | `scope.singleNamespace` | Set the `AMBASSADOR_SINGLE_NAMESPACE` environment variable and create namespaced RBAC if `rbac.enabled: true` | `false` | diff --git a/crds/getambassador.io_authservices.yaml b/crds/getambassador.io_authservices.yaml index 279f37132..dd1f275b5 100644 --- a/crds/getambassador.io_authservices.yaml +++ b/crds/getambassador.io_authservices.yaml @@ -69,6 +69,7 @@ spec: allow_partial: type: boolean max_bytes: + description: These aren't pointer types because they are required. type: integer required: - allow_partial diff --git a/crds/getambassador.io_mappings.yaml b/crds/getambassador.io_mappings.yaml index 36dd000ab..ccbc1c081 100644 --- a/crds/getambassador.io_mappings.yaml +++ b/crds/getambassador.io_mappings.yaml @@ -116,12 +116,14 @@ spec: credentials: type: boolean exposed_headers: + description: StringOrStringList is just what it says on the tin, but note that it will always marshal as a list of strings right now. items: type: string oneOf: - type: string - type: array headers: + description: StringOrStringList is just what it says on the tin, but note that it will always marshal as a list of strings right now. items: type: string oneOf: @@ -130,12 +132,14 @@ spec: max_age: type: string methods: + description: StringOrStringList is just what it says on the tin, but note that it will always marshal as a list of strings right now. items: type: string oneOf: - type: string - type: array origins: + description: StringOrStringList is just what it says on the tin, but note that it will always marshal as a list of strings right now. items: type: string oneOf: @@ -186,7 +190,7 @@ spec: type: object type: object on_status_code: - description: The status code to match on + description: The status code to match on -- not a pointer because it's required. maximum: 599 minimum: 400 type: integer @@ -330,12 +334,14 @@ spec: - type: boolean type: object remove_request_headers: + description: StringOrStringList is just what it says on the tin, but note that it will always marshal as a list of strings right now. items: type: string oneOf: - type: string - type: array remove_response_headers: + description: StringOrStringList is just what it says on the tin, but note that it will always marshal as a list of strings right now. items: type: string oneOf: diff --git a/crds/getambassador.io_tcpmappings.yaml b/crds/getambassador.io_tcpmappings.yaml index bb6b257ad..1e2d689cf 100644 --- a/crds/getambassador.io_tcpmappings.yaml +++ b/crds/getambassador.io_tcpmappings.yaml @@ -74,6 +74,7 @@ spec: description: 'FIXME(lukeshu): Surely this should be an ''int''?' type: string port: + description: Port isn't a pointer because it's required. type: integer resolver: type: string diff --git a/values.yaml b/values.yaml index 0743c5b14..2dfafc9f6 100644 --- a/values.yaml +++ b/values.yaml @@ -119,7 +119,7 @@ security: image: repository: docker.io/datawire/aes - tag: 1.11.1 + tag: 1.11.2 pullPolicy: IfNotPresent dnsPolicy: "ClusterFirst"