Release v0.3.0 kaniko (#263)
This commit is contained in:
parent
0d7eba9285
commit
5db5a7b52e
12
CHANGELOG.md
12
CHANGELOG.md
|
|
@ -1,3 +1,15 @@
|
||||||
|
# v0.3.0 Release - 7/31/2018
|
||||||
|
New Features
|
||||||
|
* Local integration testing [#256](https://github.com/GoogleContainerTools/kaniko/pull/256)
|
||||||
|
* Add --target flag for multistage builds [#255](https://github.com/GoogleContainerTools/kaniko/pull/255)
|
||||||
|
* Look for on cluster credentials using k8s chain [#243](https://github.com/GoogleContainerTools/kaniko/pull/243)
|
||||||
|
|
||||||
|
Bug Fixes
|
||||||
|
* Kill grandchildren spun up by child processes [#247](https://github.com/GoogleContainerTools/kaniko/issues/247)
|
||||||
|
* Fix bug in copy command [#221](https://github.com/GoogleContainerTools/kaniko/issues/221)
|
||||||
|
* Multi-stage errors when referencing earlier stages [#233](https://github.com/GoogleContainerTools/kaniko/issues/233)
|
||||||
|
|
||||||
|
|
||||||
# v0.2.0 Release - 7/09/2018
|
# v0.2.0 Release - 7/09/2018
|
||||||
|
|
||||||
New Features
|
New Features
|
||||||
|
|
|
||||||
2
Makefile
2
Makefile
|
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
# Bump these on release
|
# Bump these on release
|
||||||
VERSION_MAJOR ?= 0
|
VERSION_MAJOR ?= 0
|
||||||
VERSION_MINOR ?= 2
|
VERSION_MINOR ?= 3
|
||||||
VERSION_BUILD ?= 0
|
VERSION_BUILD ?= 0
|
||||||
|
|
||||||
VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)
|
VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)
|
||||||
|
|
|
||||||
|
|
@ -4,9 +4,17 @@ steps:
|
||||||
- name: "gcr.io/cloud-builders/docker"
|
- name: "gcr.io/cloud-builders/docker"
|
||||||
args: ["build", "-f", "deploy/Dockerfile",
|
args: ["build", "-f", "deploy/Dockerfile",
|
||||||
"-t", "gcr.io/kaniko-project/executor:$TAG_NAME", "."]
|
"-t", "gcr.io/kaniko-project/executor:$TAG_NAME", "."]
|
||||||
|
- name: "gcr.io/cloud-builders/docker"
|
||||||
|
args: ["tag", "gcr.io/kaniko-project/executor:$TAG_NAME",
|
||||||
|
"gcr.io/kaniko-project/executor:latest"]
|
||||||
# Then, we want to build kaniko:debug
|
# Then, we want to build kaniko:debug
|
||||||
- name: "gcr.io/cloud-builders/docker"
|
- name: "gcr.io/cloud-builders/docker"
|
||||||
args: ["build", "-f", "deploy/Dockerfile_debug",
|
args: ["build", "-f", "deploy/Dockerfile_debug",
|
||||||
"-t", "gcr.io/kaniko-project/executor:debug-$TAG_NAME", "."]
|
"-t", "gcr.io/kaniko-project/executor:debug-$TAG_NAME", "."]
|
||||||
|
- name: "gcr.io/cloud-builders/docker"
|
||||||
|
args: ["tag", "gcr.io/kaniko-project/executor:debug-$TAG_NAME",
|
||||||
|
"gcr.io/kaniko-project/executor:debug"]
|
||||||
images: ["gcr.io/kaniko-project/executor:$TAG_NAME",
|
images: ["gcr.io/kaniko-project/executor:$TAG_NAME",
|
||||||
"gcr.io/kaniko-project/executor:debug-$TAG_NAME"]
|
"gcr.io/kaniko-project/executor:latest",
|
||||||
|
"gcr.io/kaniko-project/executor:debug-$TAG_NAME",
|
||||||
|
"gcr.io/kaniko-project/executor:debug"]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue