File tree Expand file tree Collapse file tree 4 files changed +19
-2
lines changed
Expand file tree Collapse file tree 4 files changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,6 @@ $nanolayer_location \
1616 install \
1717 devcontainer-feature \
1818 " ghcr.io/devcontainers-extra/features/gh-release:1" \
19- --option repo=' siderolabs/talos' --option binaryNames=' talosctl' --option version=" $VERSION "
19+ --option repo=' siderolabs/talos' --option binaryNames=' talosctl' --option version=" $VERSION " --option releaseTagRegex= ' ^(?!.*(alpha|beta)).*$ '
2020
2121echo ' Done!'
Original file line number Diff line number Diff line change 44 "features" : {
55 "talosctl" : {}
66 }
7+ },
8+ "test_specific_version" : {
9+ "image" : " mcr.microsoft.com/devcontainers/base:debian" ,
10+ "features" : {
11+ "talosctl" : {
12+ "version" : " v1.8.0"
13+ }
14+ }
715 }
816}
Original file line number Diff line number Diff line change 44
55source dev-container-features-test-lib
66
7- check " talosctl version --client " talosctl version --client
7+ check " talosctl is installed " talosctl version --client
88
99reportResults
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ set -e
4+
5+ source dev-container-features-test-lib
6+
7+ check " talosctl version is equal to v1.8.0" sh -c " talosctl version --client | grep 'v1.8.0'"
8+
9+ reportResults
You can’t perform that action at this time.
0 commit comments