From 7c0af90bcff20f0f8da887ebf1736b0c806dc57f Mon Sep 17 00:00:00 2001 From: Mario Manno Date: Fri, 13 Dec 2019 13:33:47 +0100 Subject: [PATCH] Rename 'WithVars' DeploymentSecretType to 'DesiredManifest' We use 'desired manifest' everywhere else to reference to a manifest which has all ops files applied and all variables interpolated. --- pkg/names/names.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/names/names.go b/pkg/names/names.go index 5090e5a..8056437 100644 --- a/pkg/names/names.go +++ b/pkg/names/names.go @@ -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 @@ -40,7 +40,7 @@ const ( func (s DeploymentSecretType) String() string { return [...]string{ "with-ops", - "with-vars", + "desired", "var", "ig-resolved", "bpm"}[s]