예제 #1
0
 protected bool Equals(ApplicationSourceHelm other)
 {
     return(Equals(FileParameters, other.FileParameters) &&
            Equals(Parameters, other.Parameters) &&
            ReleaseName == other.ReleaseName &&
            Equals(ValueFiles, other.ValueFiles) &&
            Values == other.Values &&
            Version == other.Version);
 }
예제 #2
0
 public ApplicationSource(
     string chart,
     ApplicationSourceDirectory directory,
     ApplicationSourceHelm helm,
     dynamic ksonnet,
     dynamic kustomize,
     dynamic plugin,
     string path,
     string repoUrl,
     string targetRevision
     )
 {
     Chart     = chart;
     Directory = directory;
     Helm      = helm;
     // Ksonnet = ksonnet;
     // Kustomize = kustomize;
     // Plugin = plugin;
     Path           = path;
     RepoUrl        = repoUrl;
     TargetRevision = targetRevision;
 }