Skip to content

Commit

Permalink
Release 0.3-1
Browse files Browse the repository at this point in the history
  • Loading branch information
Raul Marrero authored and Rulox committed Sep 5, 2019
1 parent 4979159 commit f118bb0
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ sudo: required
services:
- docker
go:
- "1.10"
- "1.12"
script:
- echo "Nginx ASG sync - commit:${TRAVIS_COMMIT}"
- make BUILD_IN_CONTAINER=0 all
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## 0.3-1 (September 4, 2019)

IMPROVEMENTS:

* Add support for Azure Virtual Machine Scale Sets https://github.com/nginxinc/nginx-asg-sync/pull/24
* Create separate documentation for the configuration for different cloud providers: [aws](examples/aws.md) and [azure](examples/azure.md).
* Ubuntu 14.04 (Trusty) is no longer supported.

UPGRADE:

The upgrade process requires changing the configuration file name. Below are the recommended steps to follow:

1. Change the name of the configuration file from `/etc/nginx/aws.yaml` to `/etc/nginx/config.yaml`.
2. Download the Release 0.3 nginx-asg-sync package for your OS and upgrade the package using the OS tools (dpkg or rpm).
3. Check the logs of nginx-asg-sync to make sure that it is working properly after the upgrade.

Note: the supported versions of NGINX Plus are R18 and higher.

## 0.2-1 (July 27, 2018)

IMPROVEMENTS:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
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
GOLANG_CONTAINER = golang:1.10
GOLANG_CONTAINER = golang:1.12
BUILD_IN_CONTAINER = 1

all: amazon centos7 ubuntu-xenial amazon2 ubuntu-bionic
Expand Down
7 changes: 7 additions & 0 deletions build/package/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
nginx-asg-sync (0.3-1-%%CODENAME%%) unstable; urgency=low

* 0.3-1
* Add support for Azure Virtual Machine Scale Sets

-- Raul Marrero <raul.marrero@nginx.com> Wed, 4 Sep 2019 14:06:00 +0000

nginx-asg-sync (0.2-1-%%CODENAME%%) unstable; urgency=low

* 0.2-1
Expand Down
6 changes: 5 additions & 1 deletion build/package/rpm/SPECS/nginx-asg-sync.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

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

%changelog
* Wed Sep 4 2019 Raul Marrero <raul.marrero@nginx.com>
- 0.3-1
- Add support for Azure Virtual Machine Scale Sets

* Fri Jul 27 2018 Peter Kelly <peter.kelly@nginx.com>
- 0.2-1
- Add supporting guides for contributing and changelog
Expand Down
2 changes: 1 addition & 1 deletion cmd/sync/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (

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

const connTimeoutInSecs = 10

Expand Down

0 comments on commit f118bb0

Please sign in to comment.