Skip to content

Commit 8b1294b

Browse files
authored
update develop to v0.24.1 (#2904)
1 parent 3655069 commit 8b1294b

File tree

10 files changed

+10
-9
lines changed

10 files changed

+10
-9
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.24.1
3435
- v0.24.0
3536
- v0.23.0
3637
- v0.22.0

README.md

Lines changed: 1 addition & 1 deletion
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.24.0-informational?style=flat-square" />
19+
<img src="https://img.shields.io/badge/Version-0.24.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

Lines changed: 1 addition & 1 deletion
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.24.0'
6+
image: 'gravitl/netclient:v0.24.1'
77
hostname: netmaker-1
88
network_mode: host
99
restart: on-failure

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.24.0
13+
// Version: 0.24.1
1414
// Host: api.demo.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.24.0
19+
image: gravitl/netclient:v0.24.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.24.0
31+
image: gravitl/netclient:v0.24.1
3232
env:
3333
- name: TOKEN
3434
value: "TOKEN_VALUE"

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

main.go

Lines changed: 1 addition & 1 deletion
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.24.0"
31+
var version = "v0.24.1"
3232

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

release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Netmaker v0.24.0
1+
# Netmaker v0.24.1
22

33
## Whats New ✨
44

swagger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1472,7 +1472,7 @@ info:
14721472
14731473
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.
14741474
title: Netmaker
1475-
version: 0.24.0
1475+
version: 0.24.1
14761476
paths:
14771477
/api/dns:
14781478
get:

0 commit comments

Comments
 (0)