Skip to content

Commit 3deab50

Browse files
committed
chore: 0.1.7-beta release
1 parent 0654d51 commit 3deab50

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

INSTALL.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ curl -sfL https://raw.githubusercontent.com/portainer/kubesolo/develop/install.s
2323

2424
# With options
2525
curl -sfL https://get.kubesolo.io | sudo sh -s -- \
26-
--version=v0.1.6-beta \
26+
--version=v0.1.7-beta \
2727
--path=/opt/kubesolo \
2828
--run-mode=service
2929

@@ -58,7 +58,7 @@ This script provides basic installation with minimal dependencies for the most c
5858
wget -O - https://raw.githubusercontent.com/portainer/kubesolo/develop/install-minimal.sh | sh
5959

6060
# Or with environment variables
61-
KUBESOLO_VERSION=v0.1.6-beta KUBESOLO_PATH=/opt/kubesolo sh install-minimal.sh
61+
KUBESOLO_VERSION=v0.1.7-beta KUBESOLO_PATH=/opt/kubesolo sh install-minimal.sh
6262
```
6363

6464
**Features:**
@@ -93,7 +93,7 @@ chmod +x kubesolo-service.sh
9393
All installers support these environment variables:
9494

9595
```bash
96-
export KUBESOLO_VERSION="v0.1.6-beta" # Version to install
96+
export KUBESOLO_VERSION="v0.1.7-beta" # Version to install
9797
export KUBESOLO_PATH="/var/lib/kubesolo" # Installation path
9898
export KUBESOLO_PORTAINER_EDGE_ID="your-id" # Portainer Edge ID
9999
export KUBESOLO_PORTAINER_EDGE_KEY="your-key" # Portainer Edge Key
@@ -138,7 +138,7 @@ For air-gapped installations:
138138

139139
```bash
140140
# Pre-download the binary
141-
wget https://github.com/portainer/kubesolo/releases/download/v0.1.6-beta/kubesolo-v0.1.6-beta-linux-arm64.tar.gz
141+
wget https://github.com/portainer/kubesolo/releases/download/v0.1.7-beta/kubesolo-v0.1.7-beta-linux-arm64.tar.gz
142142

143143
# Extract and install manually
144144
tar -xzf kubesolo-*.tar.gz
@@ -173,7 +173,7 @@ curl -sfL https://get.kubesolo.io | sudo sh -
173173
# Combined with other options
174174
curl -sfL https://get.kubesolo.io | sudo sh -s -- \
175175
--proxy=http://proxy.company.com:8080 \
176-
--version=v0.1.6-beta \
176+
--version=v0.1.7-beta \
177177
--path=/opt/kubesolo
178178
```
179179

install-minimal.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ case $ARCH in
2222
esac
2323

2424
# Configuration
25-
KUBESOLO_VERSION="${KUBESOLO_VERSION:-v0.1.6-beta}"
25+
KUBESOLO_VERSION="${KUBESOLO_VERSION:-v0.1.7-beta}"
2626
CONFIG_PATH="${KUBESOLO_PATH:-/var/lib/kubesolo}"
2727
INSTALL_PATH="/usr/local/bin/kubesolo"
2828
BIN_URL="https://github.com/portainer/kubesolo/releases/download/$KUBESOLO_VERSION/kubesolo-$KUBESOLO_VERSION-linux-$ARCH.tar.gz"

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ echo "🔍 Detected init system: $INIT_SYSTEM"
172172
echo "🔍 Detected environment: $ENVIRONMENT"
173173

174174
# Default configuration from environment variables
175-
KUBESOLO_VERSION="${KUBESOLO_VERSION:-v0.1.6-beta}"
175+
KUBESOLO_VERSION="${KUBESOLO_VERSION:-v0.1.7-beta}"
176176
CONFIG_PATH="${KUBESOLO_PATH:-/var/lib/kubesolo}"
177177
APISERVER_EXTRA_SANS="${KUBESOLO_APISERVER_EXTRA_SANS:-}"
178178
PORTAINER_EDGE_ID="${KUBESOLO_PORTAINER_EDGE_ID:-}"

0 commit comments

Comments
 (0)