Skip to content

Commit e0964fc

Browse files
authored
Merge pull request #1639 from gravitl/feature_v0.16.1_version_numbers
update version numbers for v0.16.1 release
2 parents e6604a0 + 2f164ce commit e0964fc

File tree

15 files changed

+56
-31
lines changed

15 files changed

+56
-31
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.16.1
3435
- v0.16.0
3536
- v0.15.2
3637
- v0.15.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.0-informational?style=flat-square" />
20+
<img src="https://img.shields.io/badge/Version-0.16.1-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" />

compose/docker-compose.ee.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: "3.4"
33
services:
44
netmaker:
55
container_name: netmaker
6-
image: gravitl/netmaker:v0.16.0-ee
6+
image: gravitl/netmaker:v0.16.1-ee
77
cap_add:
88
- NET_ADMIN
99
- NET_RAW
@@ -55,7 +55,7 @@ services:
5555
- traefik.http.services.netmaker-api.loadbalancer.server.port=8081
5656
netmaker-ui:
5757
container_name: netmaker-ui
58-
image: gravitl/netmaker-ui:v0.16.0
58+
image: gravitl/netmaker-ui:v0.16.1
5959
depends_on:
6060
- netmaker
6161
links:

compose/docker-compose.reference.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: "3.4"
33
services:
44
netmaker: # The Primary Server for running Netmaker
55
container_name: netmaker
6-
image: gravitl/netmaker:v0.16.0
6+
image: gravitl/netmaker:v0.16.1
77
cap_add:
88
- NET_ADMIN
99
- NET_RAW
@@ -62,7 +62,7 @@ services:
6262
- traefik.http.services.netmaker-api.loadbalancer.server.port=8081
6363
netmaker-ui: # The Netmaker UI Component
6464
container_name: netmaker-ui
65-
image: gravitl/netmaker-ui:v0.16.0
65+
image: gravitl/netmaker-ui:v0.16.1
6666
depends_on:
6767
- netmaker
6868
links:

compose/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: "3.4"
33
services:
44
netmaker:
55
container_name: netmaker
6-
image: gravitl/netmaker:v0.16.0
6+
image: gravitl/netmaker:v0.16.1
77
cap_add:
88
- NET_ADMIN
99
- NET_RAW
@@ -52,7 +52,7 @@ services:
5252
- traefik.http.services.netmaker-api.loadbalancer.server.port=8081
5353
netmaker-ui:
5454
container_name: netmaker-ui
55-
image: gravitl/netmaker-ui:v0.16.0
55+
image: gravitl/netmaker-ui:v0.16.1
5656
depends_on:
5757
- netmaker
5858
links:

controllers/docs.go

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,26 @@
1-
//Package classification Netmaker
1+
// Package classification Netmaker
22
//
3-
// API Usage
3+
// # API Usage
44
//
55
// Most actions that can be performed via API can be performed via UI. We recommend managing your networks using the official netmaker-ui project. However, Netmaker can also be run without the UI, and all functions can be achieved via API calls. If your use case requires using Netmaker without the UI or you need to do some troubleshooting/advanced configuration, using the API directly may help.
66
//
7-
//
8-
// Authentication
7+
// # Authentication
98
//
109
// 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.
1110
//
12-
// Schemes: https
13-
// BasePath: /
14-
// Version: 0.16.0
15-
// Host: netmaker.io
11+
// Schemes: https
12+
// BasePath: /
13+
// Version: 0.16.1
14+
// Host: netmaker.io
1615
//
17-
// Consumes:
18-
// - application/json
16+
// Consumes:
17+
// - application/json
1918
//
20-
// Produces:
21-
// - application/json
19+
// Produces:
20+
// - application/json
2221
//
23-
// Security:
24-
// - oauth
22+
// Security:
23+
// - oauth
2524
//
2625
// swagger:meta
2726
package controller
@@ -310,7 +309,7 @@ type registerRequestBodyParam struct {
310309
RegisterRequest config.RegisterRequest `json:"register_request"`
311310
}
312311

313-
// swagger:response registerResponse
312+
// swagger:response registerResponse
314313
type registerResponse struct {
315314
// Register Response
316315
// in: body

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.0
19+
image: gravitl/netclient:v0.16.1
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.0
31+
image: gravitl/netclient:v0.16.1
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.0
86+
image: gravitl/netmaker:v0.16.1
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.0
18+
image: gravitl/netmaker-ui:v0.16.1
1919
ports:
2020
- containerPort: 443
2121
env:

0 commit comments

Comments
 (0)