Skip to content

Commit

Permalink
release v0.0.2 (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xuetao Song authored and ks-ci-bot committed Mar 25, 2019
1 parent 99ef7c5 commit 7198b81
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 5 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.

## [ 0.0.2 ] - 2019-03-25

### Added
- auto detect main interface instead of using `eth0` <https://github.com/kubesphere/porter/pull/23>
- add e2e test <https://github.com/kubesphere/porter/pull/23>

### Fixed
- fix the reconcile logic which add route without waiting for all endpoints <https://github.com/kubesphere/porter/pull/24>
- Update readme
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@

# Image URL to use all building/pushing image targets
IMG_MANAGER ?= kubespheredev/porter-manager:v0.0.1
IMG_AGENT ?= kubespheredev/porter-agent:v0.0.1
IMG_MANAGER ?= kubespheredev/porter-manager:v0.0.2
IMG_AGENT ?= kubespheredev/porter-agent:v0.0.2
NAMESPACE ?= porter-system

all: test manager

Expand Down Expand Up @@ -59,6 +60,7 @@ clean-up:
release:
./hack/deploy.sh ${IMG_MANAGER} manager
./hack/deploy.sh ${IMG_AGENT} agent
sed -i '' -e 's/namespace: .*/namespace: '"${NAMESPACE}"'/' ./config/default/kustomization.yaml
kustomize build config/default -o deploy/porter.yaml
@echo "Done, the yaml is in deploy folder named 'porter.yaml'"

Expand Down
2 changes: 1 addition & 1 deletion config/default/agent_image_patch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ spec:
spec:
containers:
# Change the value of image field below to your controller image URL
- image: magicsong/porter-agent:fb41d66
- image: kubespheredev/porter-agent:v0.0.2
name: porter-agent
2 changes: 1 addition & 1 deletion config/default/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Adds namespace to all resources.
namespace: porter-test-85a4b7f
namespace: porter-system

# Labels to add to all resources and selectors.
#commonLabels:
Expand Down
2 changes: 1 addition & 1 deletion config/default/manager_image_patch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ spec:
spec:
containers:
# Change the value of image field below to your controller image URL
- image: kubespheredev/porter:fb41d66
- image: kubespheredev/porter-manager:v0.0.2
name: manager


0 comments on commit 7198b81

Please sign in to comment.