Skip to content

Commit

Permalink
Merge branch 'release/0.5.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
takama committed Oct 24, 2017
2 parents 98d488e + e68bef1 commit c9e746e
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ REGISTRY?=docker.io/takama
CA_DIR?=certs

# Use the 0.0.0 tag for testing, it shouldn't clobber any release builds
RELEASE?=0.4.6
RELEASE?=0.5.0
GOOS?=linux
GOARCH?=amd64

Expand Down Expand Up @@ -53,7 +53,7 @@ build: vendor test certs
certs:
ifeq ("$(wildcard $(CA_DIR)/ca-certificates.crt)","")
@echo "+ $@"
@docker run --name ${CONTAINER_NAME}-certs -d alpine:edge sh -c "apk --update upgrade && apk add ca-certificates && update-ca-certificates"
@docker run --name ${CONTAINER_NAME}-certs -d alpine:latest sh -c "apk --update upgrade && apk add ca-certificates && update-ca-certificates"
@docker wait ${CONTAINER_NAME}-certs
@mkdir -p ${CA_DIR}
@docker cp ${CONTAINER_NAME}-certs:/etc/ssl/certs/ca-certificates.crt ${CA_DIR}
Expand Down
2 changes: 1 addition & 1 deletion charts/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: k8sapp
description: A Helm charts for Kubernetes application
version: 0.4.6
version: 0.5.0
home: https://my.domain/
sources:
- https://github.com/takama/k8sapp
Expand Down
2 changes: 1 addition & 1 deletion charts/values-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ image:
##
registry: docker.io/takama
name: k8sapp
tag: 0.4.6
tag: 0.5.0

## Docker Registry/Hub auth secret name, always use `registry-pull-secret` if registry inside if k8s
##
Expand Down
2 changes: 1 addition & 1 deletion charts/values-stable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ image:
##
registry: docker.io/takama
name: k8sapp
tag: 0.4.6
tag: 0.5.0

## Docker Registry/Hub auth secret name, always use `registry-pull-secret` if registry inside if k8s
##
Expand Down
8 changes: 7 additions & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# Version 0.4.6
# Version 0.5.0

[Documentation](README.md)

## Changelog since 0.4.6

### Configuration

- Fixed #40 alpine image for installing certificates ([#41](https://github.com/takama/k8sapp/pull/41), [@takama](https://github.com/takama))
- Released version without embedded router

## Changelog since 0.4.5

Expand Down

0 comments on commit c9e746e

Please sign in to comment.