Skip to content

Commit

Permalink
Merge pull request #185 from datawire/rel/v1.12.1
Browse files Browse the repository at this point in the history
Update Ambassador to version 1.12.1
  • Loading branch information
Rafael Schloming authored Mar 12, 2021
2 parents e34f77a + 0227a50 commit c540b0d
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ numbering uses [semantic versioning](http://semver.org).

## Next Release


## v6.6.0

- Update Ambassador to version 1.12.1: [CHANGELOG](https://github.com/datawire/ambassador/blob/master/CHANGELOG.md)
- Feature: Apply Ambassador Agent deployment by default to enable Service Catalog reporting (https://app.getambassador.io)

## v6.5.22

- Bugfix: Disable the cloud agent by default. The agent will be enabled in 6.6.0.
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.12.0
ossVersion: 1.12.0
appVersion: 1.12.1
ossVersion: 1.12.1
description: A Helm chart for Datawire Ambassador
name: ambassador
version: 6.5.22
version: 6.6.0
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.12.0` |
| `image.tag` | Ambassador image tag | `1.12.1` |
| `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
2 changes: 1 addition & 1 deletion templates/aes-agent.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if and (or .Values.agent.enabled (eq "edgectl" .Values.deploymentTool)) .Values.enableAES }}
{{- if and .Values.agent.enabled .Values.enableAES }}
{{- if ne (semver "1.12.0" | (semver .Values.image.tag).Compare) -1 }}
---
apiVersion: v1
Expand Down
4 changes: 2 additions & 2 deletions 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.12.0
tag: 1.12.1
pullPolicy: IfNotPresent

dnsPolicy: "ClusterFirst"
Expand Down Expand Up @@ -495,7 +495,7 @@ servicePreview:

# Configure the ambassador agent
agent:
enabled: false
enabled: true
# this will be empty when it first gets applied, then the user will edit the agent to
# make it start reporting
cloudConnectToken: ""
Expand Down

0 comments on commit c540b0d

Please sign in to comment.