Skip to content

Commit

Permalink
update version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
mattkasun committed Aug 26, 2022
1 parent 1725600 commit a9d3033
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 13 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ body:
label: Version
description: What version are you running?
options:
- v0.15.0
- v0.14.6
- v0.14.5
- v0.14.4
Expand Down
4 changes: 2 additions & 2 deletions compose/docker-compose.reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "3.4"
services:
netmaker: # The Primary Server for running Netmaker
container_name: netmaker
image: gravitl/netmaker:v0.14.6
image: gravitl/netmaker:v0.15.0
cap_add:
- NET_ADMIN
- NET_RAW
Expand Down Expand Up @@ -62,7 +62,7 @@ services:
- traefik.http.services.netmaker-api.loadbalancer.server.port=8081
netmaker-ui: # The Netmaker UI Component
container_name: netmaker-ui
image: gravitl/netmaker-ui:v0.14.6
image: gravitl/netmaker-ui:v0.15.0
depends_on:
- netmaker
links:
Expand Down
4 changes: 2 additions & 2 deletions compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "3.4"
services:
netmaker:
container_name: netmaker
image: gravitl/netmaker:v0.14.6
image: gravitl/netmaker:v0.15.0
cap_add:
- NET_ADMIN
- NET_RAW
Expand Down Expand Up @@ -51,7 +51,7 @@ services:
- traefik.http.services.netmaker-api.loadbalancer.server.port=8081
netmaker-ui:
container_name: netmaker-ui
image: gravitl/netmaker-ui:v0.14.6
image: gravitl/netmaker-ui:v0.15.0
depends_on:
- netmaker
links:
Expand Down
2 changes: 1 addition & 1 deletion k8s/client/netclient-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
hostNetwork: true
containers:
- name: netclient
image: gravitl/netclient-go:v0.14.6
image: gravitl/netclient-go:v0.15.0
env:
- name: TOKEN
value: "TOKEN_VALUE"
Expand Down
2 changes: 1 addition & 1 deletion k8s/client/netclient.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ spec:
# - "<node label value>"
containers:
- name: netclient
image: gravitl/netclient:v0.14.6
image: gravitl/netclient:v0.15.0
env:
- name: TOKEN
value: "TOKEN_VALUE"
Expand Down
2 changes: 1 addition & 1 deletion k8s/server/netmaker-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ spec:
value: "Kubernetes"
- name: VERBOSITY
value: "3"
image: gravitl/netmaker:v0.14.6
image: gravitl/netmaker:v0.15.0
imagePullPolicy: Always
name: netmaker
ports:
Expand Down
2 changes: 1 addition & 1 deletion k8s/server/netmaker-ui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
spec:
containers:
- name: netmaker-ui
image: gravitl/netmaker-ui:v0.14.6
image: gravitl/netmaker-ui:v0.15.0
ports:
- containerPort: 443
env:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"github.com/gravitl/netmaker/netclient/config"
)

var upgrade0147 = UpgradeInfo{
var upgrade015 = UpgradeInfo{
RequiredVersions: []string{
"v0.14.0",
"v0.14.1",
Expand All @@ -15,11 +15,11 @@ var upgrade0147 = UpgradeInfo{
"v0.14.5",
"v0.14.6",
},
NewVersion: "v0.14.7",
OP: update0147,
NewVersion: "v0.15.0",
OP: update015,
}

func update0147(cfg *config.ClientConfig) {
func update015(cfg *config.ClientConfig) {
//do stuff for 14.X -> 14.6
// No-op
/*
Expand Down
2 changes: 1 addition & 1 deletion netclient/versioninfo.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"OriginalFilename": "",
"PrivateBuild": "",
"ProductName": "Netclient",
"ProductVersion": "v0.14.6.0",
"ProductVersion": "v0.15.0.0",
"SpecialBuild": ""
},
"VarFileInfo": {
Expand Down

0 comments on commit a9d3033

Please sign in to comment.