Skip to content

Commit 83cb39d

Browse files
authored
update develop to 0.23.1 (#2835)
1 parent b8c1dde commit 83cb39d

File tree

10 files changed

+10
-9
lines changed

10 files changed

+10
-9
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

+1
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.23.1
3435
- v0.23.0
3536
- v0.22.0
3637
- v0.21.2

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

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

compose/docker-compose.netclient.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: "3.4"
33
services:
44
netclient:
55
container_name: netclient
6-
image: 'gravitl/netclient:v0.23.0'
6+
image: 'gravitl/netclient:v0.23.1'
77
hostname: netmaker-1
88
network_mode: host
99
restart: on-failure

controllers/docs.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
//
1111
// Schemes: https
1212
// BasePath: /
13-
// Version: 0.23.0
13+
// Version: 0.23.1
1414
// Host: api.demo.netmaker.io
1515
//
1616
// Consumes:

k8s/client/netclient-daemonset.yaml

+1-1
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.23.0
19+
image: gravitl/netclient:v0.23.1
2020
env:
2121
- name: TOKEN
2222
value: "TOKEN_VALUE"

k8s/client/netclient.yaml

+1-1
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.23.0
31+
image: gravitl/netclient:v0.23.1
3232
env:
3333
- name: TOKEN
3434
value: "TOKEN_VALUE"

k8s/server/netmaker-ui.yaml

+1-1
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.23.0
18+
image: gravitl/netmaker-ui:v0.23.1
1919
ports:
2020
- containerPort: 443
2121
env:

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
"golang.org/x/exp/slog"
2929
)
3030

31-
var version = "v0.23.0"
31+
var version = "v0.23.1"
3232

3333
// Start DB Connection and start API Request Handler
3434
func main() {

release.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Netmaker v0.23.0
1+
# Netmaker v0.23.1
22

33
## Whats New ✨
44

swagger.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1149,7 +1149,7 @@ info:
11491149
11501150
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.
11511151
title: Netmaker
1152-
version: 0.23.0
1152+
version: 0.23.1
11531153
paths:
11541154
/api/dns:
11551155
get:

0 commit comments

Comments
 (0)