@highstate/k8s 0.6.0 → 0.6.2
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/index.js +7 -4
- package/package.json +7 -7
package/dist/index.js
CHANGED
@@ -213,10 +213,13 @@ function mapContainerEnvironment(environment) {
|
|
213
213
|
}
|
214
214
|
function mapVolumeMount(volumeMount) {
|
215
215
|
if ("volume" in volumeMount) {
|
216
|
-
return
|
217
|
-
|
218
|
-
|
219
|
-
|
216
|
+
return omit(
|
217
|
+
{
|
218
|
+
...volumeMount,
|
219
|
+
name: output(volumeMount.volume).apply(mapWorkloadVolume).apply((volume) => output(volume.name))
|
220
|
+
},
|
221
|
+
["volume"]
|
222
|
+
);
|
220
223
|
}
|
221
224
|
return volumeMount;
|
222
225
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@highstate/k8s",
|
3
|
-
"version": "0.6.
|
3
|
+
"version": "0.6.2",
|
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.6.
|
31
|
-
"@highstate/common": "^0.6.
|
32
|
-
"@highstate/contract": "^0.6.
|
33
|
-
"@highstate/gateway-api": "^0.6.
|
34
|
-
"@highstate/pulumi": "^0.6.
|
30
|
+
"@highstate/cert-manager": "^0.6.2",
|
31
|
+
"@highstate/common": "^0.6.2",
|
32
|
+
"@highstate/contract": "^0.6.2",
|
33
|
+
"@highstate/gateway-api": "^0.6.2",
|
34
|
+
"@highstate/pulumi": "^0.6.2",
|
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": "
|
47
|
+
"gitHead": "dfd1d6878fc7d12954b6591d5ee1783d3c501eca"
|
48
48
|
}
|