Skip to content

Commit a91b783

Browse files
add changelog for 1.7 (#1508)
1 parent d685b7d commit a91b783

File tree

2 files changed

+54
-1
lines changed

2 files changed

+54
-1
lines changed

CHANGELOG/CHANGELOG-1.6.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
- [How to try](#how-to-try)
2-
- [v1.6.0-rc1](#v151)
2+
- [v1.6.0](#v160)
3+
- [v1.6.0-rc1](#v160-rc1)
34
- [Features](#features)
45
- [Fixes](#fixes)
56

7+
# v1.6.0
8+
Same as 1.6.0-rc1
9+
610
# v1.6.0-rc1
711

812
## Features
@@ -35,6 +39,10 @@ helm install \
3539
# Upgrade
3640
# https://github.com/Azure/application-gateway-kubernetes-ingress/blob/master/docs/how-tos/helm-upgrade.md
3741
# --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
42+
43+
# Install CRDs separately as helm upgrade doesn't install CRDs.
44+
kubectl apply -f https://raw.githubusercontent.com/Azure/application-gateway-kubernetes-ingress/master/helm/ingress-azure/crds/azureapplicationgatewayrewrite.yaml
45+
3846
helm upgrade \
3947
<release-name> \
4048
application-gateway-kubernetes-ingress/ingress-azure \

CHANGELOG/CHANGELOG-1.7.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
- [How to try](#how-to-try)
2+
- [v1.7.0-rc1](#v170-rc1)
3+
- [Features](#features)
4+
- [Fixes](#fixes)
5+
6+
# v1.7.0-rc1
7+
8+
## Features
9+
* [#1498](https://github.com/Azure/application-gateway-kubernetes-ingress/pull/1498) Support for Workload Identity in AGIC Helm installation
10+
* [#1503](https://github.com/Azure/application-gateway-kubernetes-ingress/pull/1503) Support for Private only Application Gateway
11+
* [#1343](https://github.com/Azure/application-gateway-kubernetes-ingress/pull/1343) Support for rule-priority annotation
12+
13+
## Fixes
14+
* [#1497](https://github.com/Azure/application-gateway-kubernetes-ingress/pull/1497) Rewrite url config should be empty if not specified in the custom resource
15+
* [#1500](https://github.com/Azure/application-gateway-kubernetes-ingress/pull/1500) Increase ARM polling duration to safeguard against transient failures
16+
17+
## How to try:
18+
```bash
19+
# Add helm repo / update AGIC repo
20+
helm repo add application-gateway-kubernetes-ingress https://appgwingress.blob.core.windows.net/ingress-azure-helm-package/
21+
helm repo update
22+
23+
# Install
24+
helm install \
25+
<release-name> \
26+
-f helm-config.yaml \
27+
application-gateway-kubernetes-ingress/ingress-azure \
28+
--version 1.7.0-rc1
29+
30+
# or
31+
32+
# Upgrade
33+
# https://github.com/Azure/application-gateway-kubernetes-ingress/blob/master/docs/how-tos/helm-upgrade.md
34+
# --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
35+
36+
# Install CRDs separately as helm upgrade doesn't install CRDs.
37+
kubectl apply -f https://raw.githubusercontent.com/Azure/application-gateway-kubernetes-ingress/master/helm/ingress-azure/crds/azureapplicationgatewayrewrite.yaml
38+
39+
helm upgrade \
40+
<release-name> \
41+
application-gateway-kubernetes-ingress/ingress-azure \
42+
--reuse-values
43+
--version 1.7.0-rc1
44+
```
45+

0 commit comments

Comments
 (0)