@toa.io/operations 1.0.0-alpha.306 → 1.0.0-alpha.308
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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.0.0-alpha.308](https://github.com/toa-io/toa/compare/v1.0.0-alpha.307...v1.0.0-alpha.308) (2026-09-15)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @toa.io/operations
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [1.0.0-alpha.307](https://github.com/toa-io/toa/compare/v1.0.0-alpha.306...v1.0.0-alpha.307) (2026-09-15)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @toa.io/operations
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [1.0.0-alpha.306](https://github.com/toa-io/toa/compare/v1.0.0-alpha.305...v1.0.0-alpha.306) (2026-09-14)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @toa.io/operations
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toa.io/operations",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.308",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Toa Deployment",
|
|
6
6
|
"homepage": "https://toa.io",
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@toa.io/generic": "1.0.0-alpha.304",
|
|
32
32
|
"@toa.io/kubernetes": "1.0.0-alpha.301",
|
|
33
|
-
"@toa.io/norm": "1.0.0-alpha.
|
|
33
|
+
"@toa.io/norm": "1.0.0-alpha.308",
|
|
34
34
|
"oxc-parser": "0.149.0",
|
|
35
35
|
"paseto": "4.0.1"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "66eb0d54032f60e6ead9e13fd9e21fb60c611277"
|
|
38
38
|
}
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
{{- if .Values.map }}
|
|
2
|
-
#
|
|
3
|
-
# than rendered into a workload's environment: a variable would replace every pod
|
|
4
|
-
# on every deployment, and a pod that came up between two of them could not be
|
|
2
|
+
# What every component of the context provides, by the version this deployment runs of it.
|
|
3
|
+
# Mounted rather than rendered into a workload's environment: a variable would replace every pod
|
|
4
|
+
# of the context on every deployment, and a pod that came up between two of them could not be
|
|
5
|
+
# told. Rendered compactly, because what is read here is read by a program and a ConfigMap is
|
|
6
|
+
# capped at a megabyte.
|
|
5
7
|
apiVersion: v1
|
|
6
8
|
kind: ConfigMap
|
|
7
9
|
metadata:
|
|
8
10
|
name: components
|
|
9
11
|
data:
|
|
10
12
|
{{ .Values.map.file }}: |
|
|
11
|
-
{{ .Values.map.components |
|
|
13
|
+
{{ .Values.map.components | toJson | indent 4 }}
|
|
12
14
|
{{- end }}
|
|
@@ -213,7 +213,7 @@ describe('prepare', () => {
|
|
|
213
213
|
assert.deepStrictEqual(lines, [
|
|
214
214
|
`FROM ${image.dependencies.reference}`,
|
|
215
215
|
'COPY --link . /composition',
|
|
216
|
-
'CMD toa compose * --map /etc/toa
|
|
216
|
+
'CMD toa compose * --map /etc/toa/.map.json'
|
|
217
217
|
])
|
|
218
218
|
|
|
219
219
|
const entries = (await readdir(context, { recursive: true })).sort()
|