You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,7 @@
1
1
# Changelog
2
2
3
+
Starting with version 1.0.0 an automatically generated list of changes can be found on the [GitHub Releases page](https://github.com/nginxinc/nginx-asg-sync/releases).
4
+
3
5
## 0.5.0 (February 24, 2021)
4
6
5
7
IMPROVEMENTS:
@@ -56,8 +58,8 @@ recommended steps to follow:
56
58
status API.
57
59
3. Reload NGINX Plus to apply the updated configuration
58
60
4. Modify the /etc/nginx/aws.yaml file:
59
-
- Remove the `upstream_conf_endpoint` and `status_endpoint` fields.
60
-
- Add the `api_endpoint` field. See an example in the configuration section of the README.md
61
+
- Remove the `upstream_conf_endpoint` and `status_endpoint` fields.
62
+
- Add the `api_endpoint` field. See an example in the configuration section of the README.md
61
63
5. Download the Release 0.2 nginx-asg-sync package for your OS and upgrade the package using the OS tools (dpkg or rpm).
62
64
6. Check the logs of nginx-asg-sync to make sure that it is working properly after the upgrade.
63
65
7. Finally remove the upstream_conf and the status API from NGINX Plus configuration.
Copy file name to clipboardExpand all lines: Makefile
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ lint:
16
16
17
17
nginx-asg-sync:
18
18
@go version || (code=$$?;printf"\033[0;31mError\033[0m: unable to build locally, try using the parameter TARGET=container or TARGET=download\n";exit$$code)
19
-
CGO_ENABLED=0 GOFLAGS="-gcflags=-trimpath=$(shell go env GOPATH) -asmflags=-trimpath=$(shell go env GOPATH)" GOOS=linux go build -trimpath -ldflags "-s -w" -o nginx-asg-sync github.com/nginxinc/nginx-asg-sync/cmd/sync
19
+
CGO_ENABLED=0 GOFLAGS="-gcflags=-trimpath=$(shell go env GOPATH) -asmflags=-trimpath=$(shell go env GOPATH)" GOOS=linux go build -trimpath -ldflags "-s -w -X main.version=devel" -o nginx-asg-sync github.com/nginxinc/nginx-asg-sync/cmd/sync
0 commit comments