@highstate/k8s 0.5.4 → 0.6.0

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.
@@ -19,11 +19,13 @@ var index = outputs({
19
19
  files: {
20
20
  "/kubeconfig": kubeconfig,
21
21
  "/welcome.sh": text`
22
- echo "Connecting to the cluster..."
23
- kubectl cluster-info
22
+ if [ "$HIGHSTATE_TERMINAL_FIRST_LAUNCH" = "1" ]; then
23
+ echo "Connecting to the cluster..."
24
+ kubectl cluster-info
24
25
 
25
- echo "Use 'kubectl' and 'helm' to manage the cluster."
26
- echo
26
+ echo "Use 'kubectl' and 'helm' to manage the cluster."
27
+ echo
28
+ fi
27
29
 
28
30
  exec script -q -c bash /dev/null
29
31
  `
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@highstate/k8s",
3
- "version": "0.5.4",
3
+ "version": "0.6.0",
4
4
  "type": "module",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -27,11 +27,11 @@
27
27
  "generate-crds": "./scripts/generate-crds.sh"
28
28
  },
29
29
  "dependencies": {
30
- "@highstate/cert-manager": "^0.5.4",
31
- "@highstate/common": "^0.5.4",
32
- "@highstate/contract": "^0.5.4",
33
- "@highstate/gateway-api": "^0.5.4",
34
- "@highstate/pulumi": "^0.5.4",
30
+ "@highstate/cert-manager": "^0.6.0",
31
+ "@highstate/common": "^0.6.0",
32
+ "@highstate/contract": "^0.6.0",
33
+ "@highstate/gateway-api": "^0.6.0",
34
+ "@highstate/pulumi": "^0.6.0",
35
35
  "@pulumi/command": "^1.0.2",
36
36
  "@pulumi/kubernetes": "^4.18.0",
37
37
  "@pulumi/pulumi": "^3.152.0",
@@ -44,5 +44,5 @@
44
44
  "devDependencies": {
45
45
  "pkgroll": "^2.5.1"
46
46
  },
47
- "gitHead": "d185cf2269127b4a82156121fc493dea9b7108c3"
47
+ "gitHead": "cf9b81699d833f7d795d1936f97f045709fc058b"
48
48
  }