Skip to content

Commit f118bb0

Browse files
Raul MarreroRulox
Raul Marrero
authored andcommitted
Release 0.3-1
1 parent 4979159 commit f118bb0

File tree

6 files changed

+33
-4
lines changed

6 files changed

+33
-4
lines changed

Diff for: .travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ sudo: required
33
services:
44
- docker
55
go:
6-
- "1.10"
6+
- "1.12"
77
script:
88
- echo "Nginx ASG sync - commit:${TRAVIS_COMMIT}"
99
- make BUILD_IN_CONTAINER=0 all

Diff for: CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## 0.3-1 (September 4, 2019)
2+
3+
IMPROVEMENTS:
4+
5+
* Add support for Azure Virtual Machine Scale Sets https://github.com/nginxinc/nginx-asg-sync/pull/24
6+
* Create separate documentation for the configuration for different cloud providers: [aws](examples/aws.md) and [azure](examples/azure.md).
7+
* Ubuntu 14.04 (Trusty) is no longer supported.
8+
9+
UPGRADE:
10+
11+
The upgrade process requires changing the configuration file name. Below are the recommended steps to follow:
12+
13+
1. Change the name of the configuration file from `/etc/nginx/aws.yaml` to `/etc/nginx/config.yaml`.
14+
2. Download the Release 0.3 nginx-asg-sync package for your OS and upgrade the package using the OS tools (dpkg or rpm).
15+
3. Check the logs of nginx-asg-sync to make sure that it is working properly after the upgrade.
16+
17+
Note: the supported versions of NGINX Plus are R18 and higher.
18+
119
## 0.2-1 (July 27, 2018)
220

321
IMPROVEMENTS:

Diff for: Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GO_DOCKER_RUN = docker run --rm -v $(shell pwd):/go/src/github.com/nginxinc/nginx-asg-sync -v $(shell pwd)/build_output:/build_output -w /go/src/github.com/nginxinc/nginx-asg-sync/cmd/sync
2-
GOLANG_CONTAINER = golang:1.10
2+
GOLANG_CONTAINER = golang:1.12
33
BUILD_IN_CONTAINER = 1
44

55
all: amazon centos7 ubuntu-xenial amazon2 ubuntu-bionic

Diff for: build/package/debian/changelog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
nginx-asg-sync (0.3-1-%%CODENAME%%) unstable; urgency=low
2+
3+
* 0.3-1
4+
* Add support for Azure Virtual Machine Scale Sets
5+
6+
-- Raul Marrero <[email protected]> Wed, 4 Sep 2019 14:06:00 +0000
7+
18
nginx-asg-sync (0.2-1-%%CODENAME%%) unstable; urgency=low
29

310
* 0.2-1

Diff for: build/package/rpm/SPECS/nginx-asg-sync.spec

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
Summary: NGINX Plus Integration with Cloud Autoscaling
55
Name: nginx-asg-sync
6-
Version: 0.2
6+
Version: 0.3
77
Release: 1%{?dist}
88
Vendor: Nginx Software, Inc.
99
URL: https://github.com/nginxinc/nginx-asg-sync
@@ -110,6 +110,10 @@ if [ $1 -ge 1 ]; then
110110
fi
111111

112112
%changelog
113+
* Wed Sep 4 2019 Raul Marrero <[email protected]>
114+
- 0.3-1
115+
- Add support for Azure Virtual Machine Scale Sets
116+
113117
* Fri Jul 27 2018 Peter Kelly <[email protected]>
114118
- 0.2-1
115119
- Add supporting guides for contributing and changelog

Diff for: cmd/sync/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717

1818
var configFile = flag.String("config_path", "/etc/nginx/config.yaml", "Path to the config file")
1919
var logFile = flag.String("log_path", "", "Path to the log file. If the file doesn't exist, it will be created")
20-
var version = "0.2-1"
20+
var version = "0.3-1"
2121

2222
const connTimeoutInSecs = 10
2323

0 commit comments

Comments
 (0)