Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Rename 'WithVars' DeploymentSecretType to 'DesiredManifest' #16

Merged
merged 1 commit into from
Dec 13, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pkg/names/names.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ const (
const (
// DeploymentSecretTypeManifestWithOps is a manifest that has ops files applied
DeploymentSecretTypeManifestWithOps DeploymentSecretType = iota
// DeploymentSecretTypeManifestAndVars is a manifest whose variables have been interpolated
DeploymentSecretTypeManifestAndVars
// DeploymentSecretTypeDesiredManifest is a manifest whose variables have been interpolated
DeploymentSecretTypeDesiredManifest
// DeploymentSecretTypeVariable is a BOSH variable generated using an QuarksSecret
DeploymentSecretTypeVariable
// DeploymentSecretTypeInstanceGroupResolvedProperties is a YAML file containing all properties needed to render an Instance Group
Expand All @@ -40,7 +40,7 @@ const (
func (s DeploymentSecretType) String() string {
return [...]string{
"with-ops",
"with-vars",
"desired",
"var",
"ig-resolved",
"bpm"}[s]
Expand Down