Merge pull request #1639 from gravitl/feature_v0.16.1_version_numbers

update version numbers for v0.16.1 release
This commit is contained in:
Alex Feiszli 2022-10-06 13:59:31 -04:00 committed by GitHub
commit e0964fccfe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 56 additions and 31 deletions

View file

@ -31,6 +31,7 @@ body:
label: Version
description: What version are you running?
options:
- v0.16.1
- v0.16.0
- v0.15.2
- v0.15.1

View file

@ -17,7 +17,7 @@
<p align="center">
<a href="https://github.com/gravitl/netmaker/releases">
<img src="https://img.shields.io/badge/Version-0.16.0-informational?style=flat-square" />
<img src="https://img.shields.io/badge/Version-0.16.1-informational?style=flat-square" />
</a>
<a href="https://hub.docker.com/r/gravitl/netmaker/tags">
<img src="https://img.shields.io/docker/pulls/gravitl/netmaker?label=downloads" />

View file

@ -3,7 +3,7 @@ version: "3.4"
services:
netmaker:
container_name: netmaker
image: gravitl/netmaker:v0.16.0-ee
image: gravitl/netmaker:v0.16.1-ee
cap_add:
- NET_ADMIN
- NET_RAW
@ -55,7 +55,7 @@ services:
- traefik.http.services.netmaker-api.loadbalancer.server.port=8081
netmaker-ui:
container_name: netmaker-ui
image: gravitl/netmaker-ui:v0.16.0
image: gravitl/netmaker-ui:v0.16.1
depends_on:
- netmaker
links:

View file

@ -3,7 +3,7 @@ version: "3.4"
services:
netmaker: # The Primary Server for running Netmaker
container_name: netmaker
image: gravitl/netmaker:v0.16.0
image: gravitl/netmaker:v0.16.1
cap_add:
- NET_ADMIN
- NET_RAW
@ -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.16.0
image: gravitl/netmaker-ui:v0.16.1
depends_on:
- netmaker
links:

View file

@ -3,7 +3,7 @@ version: "3.4"
services:
netmaker:
container_name: netmaker
image: gravitl/netmaker:v0.16.0
image: gravitl/netmaker:v0.16.1
cap_add:
- NET_ADMIN
- NET_RAW
@ -52,7 +52,7 @@ services:
- traefik.http.services.netmaker-api.loadbalancer.server.port=8081
netmaker-ui:
container_name: netmaker-ui
image: gravitl/netmaker-ui:v0.16.0
image: gravitl/netmaker-ui:v0.16.1
depends_on:
- netmaker
links:

View file

@ -1,27 +1,26 @@
//Package classification Netmaker
// Package classification Netmaker
//
// API Usage
// # API Usage
//
// 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.
//
//
// Authentication
// # Authentication
//
// 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.
//
// Schemes: https
// BasePath: /
// Version: 0.16.0
// Host: netmaker.io
// Schemes: https
// BasePath: /
// Version: 0.16.1
// Host: netmaker.io
//
// Consumes:
// - application/json
// Consumes:
// - application/json
//
// Produces:
// - application/json
// Produces:
// - application/json
//
// Security:
// - oauth
// Security:
// - oauth
//
// swagger:meta
package controller
@ -310,7 +309,7 @@ type registerRequestBodyParam struct {
RegisterRequest config.RegisterRequest `json:"register_request"`
}
// swagger:response registerResponse
// swagger:response registerResponse
type registerResponse struct {
// Register Response
// in: body

View file

@ -16,7 +16,7 @@ spec:
hostNetwork: true
containers:
- name: netclient
image: gravitl/netclient:v0.16.0
image: gravitl/netclient:v0.16.1
env:
- name: TOKEN
value: "TOKEN_VALUE"

View file

@ -28,7 +28,7 @@ spec:
# - "<node label value>"
containers:
- name: netclient
image: gravitl/netclient:v0.16.0
image: gravitl/netclient:v0.16.1
env:
- name: TOKEN
value: "TOKEN_VALUE"

View file

@ -83,7 +83,7 @@ spec:
value: "Kubernetes"
- name: VERBOSITY
value: "3"
image: gravitl/netmaker:v0.16.0
image: gravitl/netmaker:v0.16.1
imagePullPolicy: Always
name: netmaker
ports:

View file

@ -15,7 +15,7 @@ spec:
spec:
containers:
- name: netmaker-ui
image: gravitl/netmaker-ui:v0.16.0
image: gravitl/netmaker-ui:v0.16.1
ports:
- containerPort: 443
env:

View file

@ -6,6 +6,7 @@ func InitializeUpgrades() {
upgrade0145,
upgrade0146,
upgrade0160,
upgrade0161,
})
}

View file

@ -0,0 +1,24 @@
package upgrades
import (
"github.com/gravitl/netmaker/netclient/config"
)
var upgrade0161 = UpgradeInfo{
RequiredVersions: []string{
"v0.14.6",
"v0.15.0",
"v0.15.1",
"v0.15.2",
"v0.16.1",
},
NewVersion: "v0.16.1",
OP: update0161,
}
func update0161(cfg *config.ClientConfig) {
// set connect default if not present 15.X -> 16.0
if cfg.Node.Connected == "" {
cfg.Node.SetDefaultConnected()
}
}

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
version="0.16.0.0"
version="0.16.1.0"
processorArchitecture="*"
name="netclient.exe"
type="win32"

View file

@ -3,13 +3,13 @@
"FileVersion": {
"Major": 0,
"Minor": 16,
"Patch": 0,
"Patch": 1,
"Build": 0
},
"ProductVersion": {
"Major": 0,
"Minor": 16,
"Patch": 0,
"Patch": 1,
"Build": 0
},
"FileFlagsMask": "3f",
@ -29,7 +29,7 @@
"OriginalFilename": "",
"PrivateBuild": "",
"ProductName": "Netclient",
"ProductVersion": "v0.16.0.0",
"ProductVersion": "v0.16.1.0",
"SpecialBuild": ""
},
"VarFileInfo": {

View file

@ -746,7 +746,7 @@ info:
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.
title: Netmaker
version: 0.16.0
version: 0.16.1
paths:
/api/dns:
get: