示例#1
0
 public ListConfigurationsCommandHandler(
     IOptions <RenderConfiguration> renderConfiguration,
     IDeploymentConfigurationPathProvider deploymentConfigurationPathProvider
     )
 {
     _renderConfiguration = renderConfiguration;
     _deploymentConfigurationPathProvider = deploymentConfigurationPathProvider;
 }
 public DeploymentRendererContextBuilder(
     IDeploymentConfigurationProvider deploymentConfigurationProvider,
     IDeploymentConfigurationPathProvider deploymentConfigurationPathProvider,
     ISecretsHandler secretsHandler,
     IDeploymentRendererFactory deploymentRendererFactory,
     IOptions <ArgoCdEnvironment> argoCdEnvironment,
     IOptions <RenderConfiguration> renderConfiguration,
     IOptions <RenderArguments> renderArguments,
     IOptions <GeneralArguments> globalArguments
     )
 {
     _deploymentConfigurationProvider     = deploymentConfigurationProvider;
     _deploymentConfigurationPathProvider = deploymentConfigurationPathProvider;
     _secretsHandler            = secretsHandler;
     _deploymentRendererFactory = deploymentRendererFactory;
     _argoCdEnvironment         = argoCdEnvironment;
     _renderConfiguration       = renderConfiguration;
     _renderArguments           = renderArguments;
     _globalArguments           = globalArguments;
 }
示例#3
0
 public DeploymentConfigurationProvider(
     IDeploymentConfigurationPathProvider deploymentConfigurationPathProvider
     )
 {
     _deploymentConfigurationPathProvider = deploymentConfigurationPathProvider;
 }