Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.

Commit a478403

Browse files
authored
Merge pull request #723 from jumpstarter-dev/backport-616-to-release-0.7
[Backport release-0.7] Update installer default branch to 0.7
2 parents 72e6151 + cf765fa commit a478403

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

docs/source/getting-started/guides/setup-distributed-mode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This guide walks you through the process of creating an exporter using the
44
controller service, configuring drivers, and running the exporter.
55

66
```{warning}
7-
The jumpstarter-controller endpoints are secured by TLS. However, in release 0.6.x,
7+
The jumpstarter-controller endpoints are secured by TLS. However, in release 0.7.x,
88
the certificates are self-signed and rotated on every restart. This means the client
99
will not be able to verify the server certificate. To bypass this, you should use the
1010
`--insecure-tls-config` flag when creating clients and exporters. This issue will be

docs/source/getting-started/installation/packages.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ If you have the repository cloned locally:
3838

3939
| Installation Type | Command | Description |
4040
|------------------|---------|-------------|
41-
| Stable release (recommended) | `./install.sh` | Install stable release 0.6 |
42-
| Stable release (explicit) | `./install.sh -s release-0.6` | Install stable release 0.6 explicitly |
41+
| Stable release (recommended) | `./install.sh` | Install stable release 0.7 |
42+
| Stable release (explicit) | `./install.sh -s release-0.7` | Install stable release 0.7 explicitly |
4343
| Development version | `./install.sh -s main` | Install latest development version |
4444
| Release candidate | `./install.sh -s rc` | Install latest release candidate (when available) |
4545
| Custom directory | `./install.sh -d /opt/jumpstarter` | Install to custom directory |
@@ -73,7 +73,7 @@ echo 'source ~/.local/jumpstarter/set' >> ~/.bashrc
7373

7474
| Option | Description | Default |
7575
|--------|-------------|---------|
76-
| `-s, --source SOURCE` | Installation source (release-0.6, latest, rc, main) | `release-0.6` |
76+
| `-s, --source SOURCE` | Installation source (release-0.7, latest, rc, main) | `release-0.7` |
7777
| `-d, --dir DIR` | Installation directory | `~/.local/jumpstarter` |
7878
| `-h, --help` | Show help message | - |
7979

@@ -165,7 +165,7 @@ indexes:
165165
| ------------------------------------------------------ | --------------------------------------------------------------------- |
166166
| [releases](https://pkg.jumpstarter.dev/) | Release, or release-candidate versions |
167167
| [main](https://pkg.jumpstarter.dev/main/) | Index tracking the main branch, equivalent to installing from sources |
168-
| [release-0.6](https://pkg.jumpstarter.dev/release-0.6) | Index tracking a stable branch |
168+
| [release-0.7](https://pkg.jumpstarter.dev/release-0.7) | Index tracking a stable branch |
169169

170170
#### Installing from Source
171171

install.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ NC="$(tput sgr0)" # No Color
1212
INSTALL_DIR="${HOME}/.local/jumpstarter"
1313
VENV_DIR="${INSTALL_DIR}/venv"
1414
SET_SCRIPT="${INSTALL_DIR}/set"
15-
DEFAULT_SOURCE="release-0.6"
15+
DEFAULT_SOURCE="release-0.7"
1616

1717
# Function to print colored output
1818
print_info() {
@@ -39,18 +39,18 @@ Jumpstarter Installer
3939
Usage: $0 [OPTIONS]
4040
4141
OPTIONS:
42-
-s, --source SOURCE Installation source (default: release-0.6)
42+
-s, --source SOURCE Installation source (default: release-0.7)
4343
Available sources:
44-
- release-0.6: Stable release 0.6 (recommended)
44+
- release-0.7: Stable release 0.7 (recommended)
4545
- latest: Latest stable release (when available)
4646
- rc: Latest release candidate (when available)
4747
- main: Latest development version
4848
-d, --dir DIR Installation directory (default: ~/.local/jumpstarter)
4949
-h, --help Show this help message
5050
5151
EXAMPLES:
52-
$0 # Install stable release 0.6 (recommended)
53-
$0 -s release-0.6 # Install stable release 0.6
52+
$0 # Install stable release 0.7 (recommended)
53+
$0 -s release-0.7 # Install stable release 0.7
5454
$0 -s main # Install latest development version
5555
$0 -s rc # Install latest release candidate (when available)
5656
$0 -d /opt/jumpstarter # Install to custom directory
@@ -78,7 +78,7 @@ get_index_url() {
7878
;;
7979
*)
8080
print_error "Invalid source: ${source}"
81-
print_error "Available sources: latest, rc, main, release-0.6"
81+
print_error "Available sources: latest, rc, main, release-<major.minor> (e.g., ${DEFAULT_SOURCE})"
8282
exit 1
8383
;;
8484
esac

0 commit comments

Comments
 (0)