Skip to content

Commit 9b411ac

Browse files
authored
Release/1.9 changelog and chart update (#1732)
* Release 1.9 changelog * Helm chart points to release 1.9.0
1 parent 7e66fcf commit 9b411ac

File tree

4 files changed

+46
-11
lines changed

4 files changed

+46
-11
lines changed

CHANGELOG/CHANGELOG-1.9.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
- [How to try](#how-to-try)
2+
- [v1.9.0](#v170-rc1)
3+
- [Features](#features)
4+
- [Fixes](#fixes)
5+
6+
# v1.9.0
7+
8+
## Features
9+
* [#1703](https://github.com/Azure/application-gateway-kubernetes-ingress/pull/1703) Application Gateway subnet delegation support
10+
11+
## How to try:
12+
```bash
13+
# Add helm repo / update AGIC repo
14+
helm repo add application-gateway-kubernetes-ingress https://appgwingress.blob.core.windows.net/ingress-azure-helm-package/
15+
helm repo update
16+
17+
# Install
18+
helm install \
19+
<release-name> \
20+
-f helm-config.yaml \
21+
application-gateway-kubernetes-ingress/ingress-azure \
22+
--version 1.9.0
23+
24+
# or
25+
26+
# Upgrade
27+
# https://github.com/Azure/application-gateway-kubernetes-ingress/blob/master/docs/how-tos/helm-upgrade.md
28+
# --reuse-values when upgrading, reuse the last release's values and merge in any overrides from the command line via --set and -f. If '--reset-values' is specified, this is ignored
29+
30+
# Install CRDs separately as helm upgrade doesn't install CRDs.
31+
kubectl apply -f https://raw.githubusercontent.com/Azure/application-gateway-kubernetes-ingress/master/helm/ingress-azure/crds/azureapplicationgatewayrewrite.yaml
32+
33+
helm upgrade \
34+
<release-name> \
35+
application-gateway-kubernetes-ingress/ingress-azure \
36+
--reuse-values
37+
--version 1.9.0
38+
```
39+

helm/ingress-azure/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v1
2-
appVersion: "1.6.0"
2+
appVersion: "1.9.0"
33
description: Use Azure Application Gateway as the ingress for an Azure Kubernetes Service cluster.
44
name: ingress-azure
5-
version: 1.6.0
5+
version: 1.9.0

helm/ingress-azure/values-template.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,3 +116,7 @@ nodeSelector: {}
116116
# Specify if the cluster is RBAC enabled or not
117117
rbac:
118118
enabled: false # true/false
119+
120+
################################################################################
121+
# Specify if the controller is running as an addon.
122+
addon: false # true/false

helm/ingress-azure/values.yaml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
# The values.yaml file is important to templates.
2-
# This file contains the default values for a chart.
3-
# These values may be overridden during helm install or helm upgrade.
4-
51
# Verbosity level of the App Gateway Ingress Controller
62
verbosityLevel: 3
73

@@ -11,7 +7,7 @@ verbosityLevel: 3
117

128
image:
139
repository: mcr.microsoft.com/azure-application-gateway/kubernetes-ingress
14-
tag: 1.6.0
10+
tag: 1.9.0
1511
pullPolicy: Always
1612

1713

@@ -120,7 +116,3 @@ nodeSelector: {}
120116
# Specify if the cluster is RBAC enabled or not
121117
rbac:
122118
enabled: false # true/false
123-
124-
################################################################################
125-
# Specify if the controller is running as an addon.
126-
addon: false # true/false

0 commit comments

Comments
 (0)