Skip to content

Commit

Permalink
Merge pull request #178 from datawire/rel/v1.11.2
Browse files Browse the repository at this point in the history
Update for Ambassador 1.11.2
  • Loading branch information
kflynn authored Mar 1, 2021
2 parents 34dd9e6 + c7ed461 commit f7cd397
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions Chart.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` |
Expand Down
1 change: 1 addition & 0 deletions crds/getambassador.io_authservices.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 7 additions & 1 deletion crds/getambassador.io_mappings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down
1 change: 1 addition & 0 deletions crds/getambassador.io_tcpmappings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ security:

image:
repository: docker.io/datawire/aes
tag: 1.11.1
tag: 1.11.2
pullPolicy: IfNotPresent

dnsPolicy: "ClusterFirst"
Expand Down

0 comments on commit f7cd397

Please sign in to comment.