@xfe-repo/web-app 1.2.9 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/deploy/.drone.yml CHANGED
@@ -83,8 +83,13 @@ steps:
83
83
  - sed -i "s/<<ENV_TYPE>>/test/g" deploy/helm/values.test.yaml
84
84
  - sed -i "s/<<APP_SUFFIX>>/-$HOST_PREFIX/g" deploy/helm/values.test.yaml
85
85
  - sed -i "s/<<HOST_PREFIX>>/$HOST_PREFIX/g" deploy/helm/values.test.yaml
86
- - helm template deploy/helm --values deploy/helm/values.test.yaml
87
- - helm template deploy/helm --values deploy/helm/values.test.yaml | kubectl --kubeconfig=kube_config apply -f -
86
+ - sed -i "s/deployment/$appName-$HOST_PREFIX/g" deploy/helm/Chart.yaml
87
+ - sed -i "s/1.0.0/0.0.0-$CI_COMMIT_SHA/g" deploy/helm/Chart.yaml
88
+ - helm upgrade --install "$appName-$HOST_PREFIX" deploy/helm/ \
89
+ -f deploy/helm/values.test.yaml \
90
+ --namespace deployment-test \
91
+ --create-namespace \
92
+ --history-max 5 \
88
93
  when:
89
94
  event:
90
95
  - custom
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xfe-repo/web-app",
3
- "version": "1.2.9",
3
+ "version": "1.3.0",
4
4
  "bin": {
5
5
  "xfe-web": "./bin/index.js"
6
6
  },