Skip to content

Commit 9e3f402

Browse files
authored
Merge pull request #1774 from gravitl/feature_v0.17.0_versions
updated versions to v0.17.0 where applicable
2 parents d4310fc + 9fb0380 commit 9e3f402

File tree

10 files changed

+14
-13
lines changed

10 files changed

+14
-13
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ body:
3131
label: Version
3232
description: What version are you running?
3333
options:
34+
- v0.17.0
3435
- v0.16.3
3536
- v0.16.2
3637
- v0.16.1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
<p align="center">
1919
<a href="https://github.com/gravitl/netmaker/releases">
20-
<img src="https://img.shields.io/badge/Version-0.16.3-informational?style=flat-square" />
20+
<img src="https://img.shields.io/badge/Version-0.17.0-informational?style=flat-square" />
2121
</a>
2222
<a href="https://hub.docker.com/r/gravitl/netmaker/tags">
2323
<img src="https://img.shields.io/docker/pulls/gravitl/netmaker?label=downloads" />

controllers/docs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
//
1111
// Schemes: https
1212
// BasePath: /
13-
// Version: 0.16.3
13+
// Version: 0.17.0
1414
// Host: netmaker.io
1515
//
1616
// Consumes:

k8s/client/netclient-daemonset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
hostNetwork: true
1717
containers:
1818
- name: netclient
19-
image: gravitl/netclient:v0.16.3
19+
image: gravitl/netclient:v0.17.0
2020
env:
2121
- name: TOKEN
2222
value: "TOKEN_VALUE"

k8s/client/netclient.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ spec:
2828
# - "<node label value>"
2929
containers:
3030
- name: netclient
31-
image: gravitl/netclient:v0.16.3
31+
image: gravitl/netclient:v0.17.0
3232
env:
3333
- name: TOKEN
3434
value: "TOKEN_VALUE"

k8s/server/netmaker-server.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ spec:
8383
value: "Kubernetes"
8484
- name: VERBOSITY
8585
value: "3"
86-
image: gravitl/netmaker:v0.16.3
86+
image: gravitl/netmaker:v0.17.0
8787
imagePullPolicy: Always
8888
name: netmaker
8989
ports:

k8s/server/netmaker-ui.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
containers:
1717
- name: netmaker-ui
18-
image: gravitl/netmaker-ui:v0.16.3
18+
image: gravitl/netmaker-ui:v0.17.0
1919
ports:
2020
- containerPort: 443
2121
env:

netclient/netclient.exe.manifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
22
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
33
<assemblyIdentity
4-
version="0.16.3.0"
4+
version="0.17.0.0"
55
processorArchitecture="*"
66
name="netclient.exe"
77
type="win32"

netclient/versioninfo.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
"FixedFileInfo": {
33
"FileVersion": {
44
"Major": 0,
5-
"Minor": 16,
6-
"Patch": 3,
5+
"Minor": 17,
6+
"Patch": 0,
77
"Build": 0
88
},
99
"ProductVersion": {
1010
"Major": 0,
11-
"Minor": 16,
12-
"Patch": 3,
11+
"Minor": 17,
12+
"Patch": 0,
1313
"Build": 0
1414
},
1515
"FileFlagsMask": "3f",
@@ -29,7 +29,7 @@
2929
"OriginalFilename": "",
3030
"PrivateBuild": "",
3131
"ProductName": "Netclient",
32-
"ProductVersion": "v0.16.3.0",
32+
"ProductVersion": "v0.17.0.0",
3333
"SpecialBuild": ""
3434
},
3535
"VarFileInfo": {

swagger.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ info:
746746
747747
API calls must be authenticated via a header of the format -H “Authorization: Bearer <YOUR_SECRET_KEY>” There are two methods to obtain YOUR_SECRET_KEY: 1. Using the masterkey. By default, this value is “secret key,” but you should change this on your instance and keep it secure. This value can be set via env var at startup or in a config file (config/environments/< env >.yaml). See the [Netmaker](https://docs.netmaker.org/index.html) documentation for more details. 2. Using a JWT received for a node. This can be retrieved by calling the /api/nodes/<network>/authenticate endpoint, as documented below.
748748
title: Netmaker
749-
version: 0.16.3
749+
version: 0.17.0
750750
paths:
751751
/api/dns:
752752
get:

0 commit comments

Comments
 (0)