@highstate/talos 0.5.4 → 0.5.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cluster/index.js +7 -5
- package/package.json +7 -7
package/dist/cluster/index.js
CHANGED
@@ -180,12 +180,14 @@ var index = outputs({
|
|
180
180
|
"/talosconfig": clientConfiguration,
|
181
181
|
"/secrets": machineSecrets,
|
182
182
|
"/welcome.sh": text`
|
183
|
-
|
184
|
-
|
183
|
+
if [ "$HIGHSTATE_TERMINAL_FIRST_LAUNCH" = "1" ]; then
|
184
|
+
echo "Connecting to the cluster..."
|
185
|
+
kubectl cluster-info
|
185
186
|
|
186
|
-
|
187
|
-
|
188
|
-
|
187
|
+
echo "Use 'kubectl' and 'helm' to manage the cluster."
|
188
|
+
echo "Use 'talosctl' to manage the Talos side of the cluster."
|
189
|
+
echo
|
190
|
+
fi
|
189
191
|
|
190
192
|
exec script -q -c bash /dev/null
|
191
193
|
`
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@highstate/talos",
|
3
|
-
"version": "0.5.
|
3
|
+
"version": "0.5.5",
|
4
4
|
"type": "module",
|
5
5
|
"files": [
|
6
6
|
"assets",
|
@@ -17,11 +17,11 @@
|
|
17
17
|
"generate-local-path-provisioner": "bash ./scripts/generate-local-path-provisioner.sh"
|
18
18
|
},
|
19
19
|
"dependencies": {
|
20
|
-
"@highstate/cilium": "^0.5.
|
21
|
-
"@highstate/common": "^0.5.
|
22
|
-
"@highstate/contract": "^0.5.
|
23
|
-
"@highstate/k8s": "^0.5.
|
24
|
-
"@highstate/pulumi": "^0.5.
|
20
|
+
"@highstate/cilium": "^0.5.5",
|
21
|
+
"@highstate/common": "^0.5.5",
|
22
|
+
"@highstate/contract": "^0.5.5",
|
23
|
+
"@highstate/k8s": "^0.5.5",
|
24
|
+
"@highstate/pulumi": "^0.5.5",
|
25
25
|
"@pulumi/command": "^1.0.2",
|
26
26
|
"@pulumiverse/talos": "^0.4.1"
|
27
27
|
},
|
@@ -31,5 +31,5 @@
|
|
31
31
|
"devDependencies": {
|
32
32
|
"pkgroll": "^2.5.1"
|
33
33
|
},
|
34
|
-
"gitHead": "
|
34
|
+
"gitHead": "daed8a1121d6dc0af8ed92261962356dad2325aa"
|
35
35
|
}
|