Skip to content

Commit

Permalink
bumping to release-1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vkotronis committed Dec 2, 2019
1 parent 847a2b4 commit 4fa95c9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
COMPOSE_PROJECT_NAME=artemis
DB_VERSION=20
GUI_ENABLED=true
SYSTEM_VERSION=latest
SYSTEM_VERSION=release-1.4.0
HISTORIC=false

# Redis config
Expand Down
2 changes: 1 addition & 1 deletion artemis-chart/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
{{ include "artemis.labels" . | indent 4 }}
data:
guiEnabled: {{ .Values.guiEnable | default "true" | quote }}
systemVersion: {{ .Values.systemVersion | default "latest" | quote }}
systemVersion: {{ .Values.systemVersion | default "release-1.4.0" | quote }}
historic: {{ .Values.historic | default "false" | quote }}
redisHost: {{ .Release.Name }}-{{ .Values.redisHost | default "backend" }}-svc
redisPort: {{ .Values.redisPort | default "6379" | quote }}
Expand Down
2 changes: 1 addition & 1 deletion artemis-chart/values.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# general
guiEnabled: true
systemVersion: latest
systemVersion: release-1.4.0
historic: false
replicaCount: 1
# redis
Expand Down
2 changes: 1 addition & 1 deletion testcafe/tests/simple-flow.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ test('Simple Flow', async t => {
.expect(Selector('li').withText('Observer').textContent).contains("Observer On 1/1")
.expect(Selector('#db_stat_value_monitored_prefixes').find('b').withText('1').textContent).eql("1")
.expect(Selector('#db_stat_value_configured_prefixes').find('b').withText('3').textContent).eql("3")
.expect(Selector('p').withText('ARTEMIS v.\'latest\'').textContent).eql("ARTEMIS v.'latest'")
.expect(Selector('p').withText('ARTEMIS v.\'release-1.4.0\'').textContent).eql("ARTEMIS v.'release-1.4.0'")
.click(Selector('#navbar_bgpupdates'))
.expect(Selector('h3').withText('No BGP Updates to display').textContent).eql("No BGP Updates to display")
.click(Selector('#navbar_hijacks'))
Expand Down

0 comments on commit 4fa95c9

Please sign in to comment.