Skip to content

Commit 2aef288

Browse files
committed
refactor: Removed kiln glaze and deglaze commands
Removed the code, docs and tests around kiln glaze and deglaze command [TNZ-33160] - [Kiln]: Remove glaze command, its corresponding code, docs and tests from Kiln repo JIRA Link: https://vmw-jira.broadcom.net/browse/TNZ-33160 Date: 04-Mar-2025 Authored-by: Ramkumar Vengadakrishnan ramkumar.vengadakrishnan@broadcom.com
1 parent 0092792 commit 2aef288

9 files changed

Lines changed: 0 additions & 659 deletions

File tree

README.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -96,17 +96,6 @@ You may set a **"version"** field. The value must match the [constraints specifi
9696

9797
You may set a **"github_repository"** field. This should be where the BOSH Release source is maintained. It is used for generating Release Notes for your tile.
9898

99-
You may set a **"float_always"** field. When you set this, `kiln glaze` will not lock this release's version.
100-
101-
You may set a **"maintenance_version_bump_policy"** field. When you run `kiln deglaze` this field specifies how to reset the version constraint after `kiln glaze` locked it.
102-
103-
- "LockNone": Given a glazed version value "1.2.3", this setting resets the version constraint to `"*"`
104-
- "LockPatch": Given a glazed version value "1.2.3", this setting resets the version constraint to `"1.2.3"`
105-
- "LockMinor": Given a glazed version value "1.2.3", this setting resets the version constraint to `"1.2.*"`
106-
- "LockMajor": (default) Given a glazed version value "1.2.3", this setting resets the version constraint to `"1.*"`
107-
108-
You may set a **"slack"** field. Kiln does not use this field. It can be useful for product tile Authors to know who to reach out to when something goes wrong.
109-
11099
#### "bake_configurations"
111100

112101
You may add a list of `kiln bake` flags in the Kilnfile to keep a record of how your tile was baked and to keep CI scripts simpler.
@@ -157,7 +146,6 @@ Commands:
157146
fetch fetches releases
158147
find-release-version prints a json string of a remote release satisfying the Kilnfile version and stemcell constraints
159148
find-stemcell-version prints the latest stemcell version from Pivnet using the stemcell type listed in the Kilnfile
160-
glaze Pin versions in Kilnfile to match lock.
161149
help prints this usage information
162150
re-bake re-bake constructs a tile from a bake record
163151
release-notes generates release notes from bosh-release release notes

internal/acceptance/workflows/acceptance_test.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,6 @@ func Test_updating_releases(t *testing.T) {
4040
)
4141
}
4242

43-
func Test_glaze(t *testing.T) {
44-
setupAndRunFeatureTest(t)
45-
}
46-
4743
func Test_updating_stemcell(t *testing.T) {
4844
setupAndRunFeatureTest(t,
4945
scenario.InitializeTanzuNetwork,

internal/acceptance/workflows/glaze.feature

Lines changed: 0 additions & 10 deletions
This file was deleted.

internal/acceptance/workflows/using_kiln.feature

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ Feature: As a developer, I want the Kiln CLI to be usable
3737
| fetch |
3838
| find-release-version |
3939
| find-stemcell-version |
40-
| glaze |
4140
| release-notes |
4241
| sync-with-local |
4342
| update-release |

internal/commands/glaze.go

Lines changed: 0 additions & 53 deletions
This file was deleted.

internal/commands/glaze_test.go

Lines changed: 0 additions & 204 deletions
This file was deleted.

main.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ func main() {
9999
}
100100

101101
// commandSet["fetch"] = commands.NewFetch(outLogger, mrsProvider, localReleaseDirectory)
102-
commandSet["glaze"] = commands.NewGlaze()
103102

104103
commandSet["find-release-version"] = commands.NewFindReleaseVersion(outLogger, mrsProvider)
105104

0 commit comments

Comments
 (0)