Skip to content

Commit

Permalink
Release 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaferraro committed Mar 15, 2019
1 parent dc889f0 commit b60898b
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 7 deletions.
9 changes: 9 additions & 0 deletions assets/json-schema/Integration.json
Original file line number Diff line number Diff line change
Expand Up @@ -330,9 +330,15 @@
"content": {
"type": "string"
},
"contentKey": {
"type": "string"
},
"contentRef": {
"type": "string"
},
"mountPath": {
"type": "string"
},
"name": {
"type": "string"
},
Expand All @@ -351,6 +357,9 @@
"content": {
"type": "string"
},
"contentKey": {
"type": "string"
},
"contentRef": {
"type": "string"
},
Expand Down
2 changes: 1 addition & 1 deletion deploy/operator-deployment-kubernetes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
serviceAccountName: camel-k-operator
containers:
- name: camel-k-operator
image: docker.io/apache/camel-k:0.3.1-SNAPSHOT
image: docker.io/apache/camel-k:0.3.1
command:
- camel-k
imagePullPolicy: IfNotPresent
Expand Down
2 changes: 1 addition & 1 deletion deploy/operator-deployment-openshift.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
serviceAccountName: camel-k-operator
containers:
- name: camel-k-operator
image: docker.io/apache/camel-k:0.3.1-SNAPSHOT
image: docker.io/apache/camel-k:0.3.1
command:
- camel-k
imagePullPolicy: IfNotPresent
Expand Down
4 changes: 2 additions & 2 deletions deploy/resources.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pkg/util/defaults/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package defaults

const (
// Version --
Version = "0.3.1-SNAPSHOT"
Version = "0.3.1"

// CamelVersionConstraint --
CamelVersionConstraint = "~2.23.x"
Expand Down
4 changes: 2 additions & 2 deletions script/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSIONFILE := pkg/util/defaults/defaults.go
VERSION := 0.3.1-SNAPSHOT
VERSION := 0.3.1
RUNTIME_VERSION := 0.3.1
CAMEL_VERSION := 2.23.1
CAMEL_VERSION_CONSTRAINT := ~2.23.x
Expand Down Expand Up @@ -62,7 +62,7 @@ build-resources:
./script/build_catalog.sh $(CAMEL_VERSION) $(RUNTIME_VERSION)
./script/build_catalog.sh 2.23.0 $(RUNTIME_VERSION)
./script/embed_resources.sh deploy
go run cmd/util/json-schema-gen/jsonschemagen.go --out=./assets/json-schema
#go run cmd/util/json-schema-gen/jsonschemagen.go --out=./assets/json-schema

build-compile-integration-tests:
go test -c -tags=integration ./test/*.go
Expand Down

0 comments on commit b60898b

Please sign in to comment.