@spinnaker/kubernetes 0.3.2 → 0.5.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/CHANGELOG.md +75 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/pipelines/stages/deployManifest/ManifestDeploymentOptions.d.ts +2 -0
- package/dist/pipelines/stages/index.d.ts +1 -0
- package/dist/pipelines/stages/rolloutRestartManifest/RolloutRestartManifestStageConfig.d.ts +13 -0
- package/dist/pipelines/stages/rolloutRestartManifest/rolloutRestartManifestStage.d.ts +4 -0
- package/dist/rolloutStrategy/bluegreen.strategy.d.ts +2 -0
- package/package.json +8 -5
- package/src/pipelines/stages/deployManifest/ManifestDeploymentOptions.spec.tsx +22 -0
- package/src/pipelines/stages/deployManifest/ManifestDeploymentOptions.tsx +28 -5
- package/src/pipelines/stages/index.ts +1 -0
- package/src/pipelines/stages/rolloutRestartManifest/RolloutRestartManifestStageConfig.tsx +46 -0
- package/src/pipelines/stages/rolloutRestartManifest/rolloutRestartManifestStage.ts +20 -0
- package/src/rolloutStrategy/bluegreen.strategy.ts +7 -0
- package/src/rolloutStrategy/index.ts +2 -1
- package/src/rolloutStrategy/redblack.strategy.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,81 @@
|
|
|
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
|
+
## [0.5.2](https://github.com/spinnaker/deck/compare/@spinnaker/kubernetes@0.5.1...@spinnaker/kubernetes@0.5.2) (2023-10-16)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **kubernetes:** export rollout restart stage so it's actually available for use ([#10037](https://github.com/spinnaker/deck/issues/10037)) ([c19f9ce](https://github.com/spinnaker/deck/commit/c19f9ce9ca411fe16e865d3d3121d497bce93575))
|
|
12
|
+
* **publish:** set access config in deck libraries ([#10049](https://github.com/spinnaker/deck/issues/10049)) ([2a5ebe2](https://github.com/spinnaker/deck/commit/2a5ebe25662eeb9d41b5071749266bf9d6d51104))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
## [0.5.1](https://github.com/spinnaker/deck/compare/@spinnaker/kubernetes@0.5.0...@spinnaker/kubernetes@0.5.1) (2023-09-06)
|
|
19
|
+
|
|
20
|
+
**Note:** Version bump only for package @spinnaker/kubernetes
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
# [0.5.0](https://github.com/spinnaker/deck/compare/@spinnaker/kubernetes@0.4.4...@spinnaker/kubernetes@0.5.0) (2023-07-20)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Features
|
|
30
|
+
|
|
31
|
+
* **kubernetes:** Add Deck stage for Rolling Restart ([#10012](https://github.com/spinnaker/deck/issues/10012)) ([0b0c45f](https://github.com/spinnaker/deck/commit/0b0c45fa077265c83f7d6d495d4607932ed43680))
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
## [0.4.4](https://github.com/spinnaker/deck/compare/@spinnaker/kubernetes@0.4.3...@spinnaker/kubernetes@0.4.4) (2023-06-02)
|
|
38
|
+
|
|
39
|
+
**Note:** Version bump only for package @spinnaker/kubernetes
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
## [0.4.3](https://github.com/spinnaker/deck/compare/@spinnaker/kubernetes@0.4.2...@spinnaker/kubernetes@0.4.3) (2023-05-11)
|
|
46
|
+
|
|
47
|
+
**Note:** Version bump only for package @spinnaker/kubernetes
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
## [0.4.2](https://github.com/spinnaker/deck/compare/@spinnaker/kubernetes@0.4.1...@spinnaker/kubernetes@0.4.2) (2023-05-03)
|
|
54
|
+
|
|
55
|
+
**Note:** Version bump only for package @spinnaker/kubernetes
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
## [0.4.1](https://github.com/spinnaker/deck/compare/@spinnaker/kubernetes@0.4.0...@spinnaker/kubernetes@0.4.1) (2023-04-03)
|
|
62
|
+
|
|
63
|
+
**Note:** Version bump only for package @spinnaker/kubernetes
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
# [0.4.0](https://github.com/spinnaker/deck/compare/@spinnaker/kubernetes@0.3.2...@spinnaker/kubernetes@0.4.0) (2023-02-01)
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
### Features
|
|
73
|
+
|
|
74
|
+
* **Blue/Green:** Add warning label and enhance disable/enable manifest stage with Deployment kind. ([#9928](https://github.com/spinnaker/deck/issues/9928)) ([6620787](https://github.com/spinnaker/deck/commit/66207875f1386a3271ced770cd38227b5888c1da))
|
|
75
|
+
* **kubernetes:** Introduce blue/green traffic management strategy ([#9911](https://github.com/spinnaker/deck/issues/9911)) ([9fb85e1](https://github.com/spinnaker/deck/commit/9fb85e13d0e1b00bb1214c6da0a01a88a2b09fd0))
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|
|
6
81
|
## [0.3.2](https://github.com/spinnaker/deck/compare/@spinnaker/kubernetes@0.3.1...@spinnaker/kubernetes@0.3.2) (2022-10-21)
|
|
7
82
|
|
|
8
83
|
**Note:** Version bump only for package @spinnaker/kubernetes
|