-
Notifications
You must be signed in to change notification settings - Fork 641
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(manifests/helmfile): add helmfile templating engine #986
Changes from all commits
e4f9508
95ff86b
30ad3e3
997a574
a67d35d
7e1f516
256756c
3985c81
c0ceabc
f2ac9e0
f877ba0
7c469ed
3e86a4b
54249e2
6997196
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,7 @@ public enum TemplateRenderer { | |
HELM3, | ||
KUSTOMIZE, | ||
KUSTOMIZE4, | ||
HELMFILE, | ||
CF; | ||
|
||
@JsonCreator | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
/* | ||
* Copyright 2023 Grab Holdings, Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.netflix.spinnaker.rosco.manifests; | ||
|
||
import com.netflix.spinnaker.kork.artifacts.model.Artifact; | ||
import com.netflix.spinnaker.kork.exceptions.SpinnakerException; | ||
import com.netflix.spinnaker.kork.retrofit.exceptions.SpinnakerHttpException; | ||
import java.io.IOException; | ||
import java.nio.file.Path; | ||
import java.util.ArrayList; | ||
import java.util.Arrays; | ||
import java.util.List; | ||
import java.util.Optional; | ||
import java.util.UUID; | ||
import java.util.regex.Pattern; | ||
import java.util.stream.Collectors; | ||
|
||
public abstract class HelmBakeTemplateUtils<T extends BakeManifestRequest> { | ||
private static final String MANIFEST_SEPARATOR = "---\n"; | ||
private static final Pattern REGEX_TESTS_MANIFESTS = | ||
Pattern.compile("# Source: .*/templates/tests/.*"); | ||
|
||
private final ArtifactDownloader artifactDownloader; | ||
|
||
protected HelmBakeTemplateUtils(ArtifactDownloader artifactDownloader) { | ||
this.artifactDownloader = artifactDownloader; | ||
} | ||
|
||
public ArtifactDownloader getArtifactDownloader() { | ||
return artifactDownloader; | ||
} | ||
|
||
public abstract String fetchFailureMessage(String description, Exception e); | ||
|
||
public String removeTestsDirectoryTemplates(String inputString) { | ||
return Arrays.stream(inputString.split(MANIFEST_SEPARATOR)) | ||
.filter(manifest -> !REGEX_TESTS_MANIFESTS.matcher(manifest).find()) | ||
.collect(Collectors.joining(MANIFEST_SEPARATOR)); | ||
} | ||
|
||
protected Path downloadArtifactToTmpFile(BakeManifestEnvironment env, Artifact artifact) | ||
throws IOException { | ||
String fileName = UUID.randomUUID().toString(); | ||
Path targetPath = env.resolvePath(fileName); | ||
artifactDownloader.downloadArtifactToFile(artifact, targetPath); | ||
return targetPath; | ||
} | ||
|
||
public abstract String getHelmExecutableForRequest(T request); | ||
|
||
protected List<Path> getValuePaths(List<Artifact> artifacts, BakeManifestEnvironment env) { | ||
List<Path> valuePaths = new ArrayList<>(); | ||
|
||
try { | ||
// not a stream to keep exception handling cleaner | ||
for (Artifact valueArtifact : artifacts.subList(1, artifacts.size())) { | ||
valuePaths.add(downloadArtifactToTmpFile(env, valueArtifact)); | ||
} | ||
} catch (SpinnakerHttpException e) { | ||
throw new SpinnakerHttpException(fetchFailureMessage("values file", e), e); | ||
} catch (IOException | SpinnakerException e) { | ||
throw new IllegalStateException(fetchFailureMessage("values file", e), e); | ||
} | ||
|
||
return valuePaths; | ||
} | ||
|
||
protected Path getHelmTypePathFromArtifact( | ||
BakeManifestEnvironment env, List<Artifact> inputArtifacts, String filePath) | ||
throws IOException { | ||
Path helmTypeFilePath; | ||
|
||
Artifact helmTypeTemplateArtifact = inputArtifacts.get(0); | ||
String artifactType = Optional.ofNullable(helmTypeTemplateArtifact.getType()).orElse(""); | ||
|
||
if ("git/repo".equals(artifactType)) { | ||
env.downloadArtifactTarballAndExtract(getArtifactDownloader(), helmTypeTemplateArtifact); | ||
|
||
helmTypeFilePath = env.resolvePath(Optional.ofNullable(filePath).orElse("")); | ||
} else { | ||
try { | ||
helmTypeFilePath = downloadArtifactToTmpFile(env, helmTypeTemplateArtifact); | ||
} catch (SpinnakerHttpException e) { | ||
throw new SpinnakerHttpException(fetchFailureMessage("template", e), e); | ||
} catch (IOException | SpinnakerException e) { | ||
throw new IllegalStateException(fetchFailureMessage("template", e), e); | ||
} | ||
} | ||
|
||
return helmTypeFilePath; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* | ||
* Copyright 2023 Grab Holdings, Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.netflix.spinnaker.rosco.manifests.config; | ||
|
||
import lombok.Data; | ||
import org.springframework.boot.context.properties.ConfigurationProperties; | ||
|
||
@ConfigurationProperties("helmfile") | ||
@Data | ||
public class RoscoHelmfileConfigurationProperties { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Prefix There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. All the other files have the |
||
private String executablePath = "helmfile"; | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
* Copyright 2023 Grab Holdings, Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.netflix.spinnaker.rosco.manifests.helmfile; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. License header, here and elsewhere. |
||
|
||
import com.netflix.spinnaker.kork.artifacts.model.Artifact; | ||
import com.netflix.spinnaker.rosco.manifests.BakeManifestRequest; | ||
import java.util.List; | ||
import lombok.Data; | ||
import lombok.EqualsAndHashCode; | ||
|
||
@Data | ||
@EqualsAndHashCode(callSuper = true) | ||
public class HelmfileBakeManifestRequest extends BakeManifestRequest { | ||
private String helmfileFilePath; | ||
|
||
/** | ||
* The environment name used to customize the content of the helmfile manifest. The environment | ||
* name defaults to default. | ||
*/ | ||
private String environment; | ||
|
||
/** The namespace to be released into. */ | ||
private String namespace; | ||
|
||
/** | ||
* The 0th element is (or contains) the helmfile template. The rest (possibly none) are values | ||
* files. | ||
*/ | ||
List<Artifact> inputArtifacts; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please add javadoc for each member, but especially this one. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ✅ |
||
|
||
/** | ||
* Include custom resource definition manifests in the templated output. Helmfile uses Helm v3 | ||
* only which provides the option to include CRDs as part of the rendered output. | ||
*/ | ||
boolean includeCRDs; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I noticed that 0.154.0 has now appeared. I'm OK to go ahead with 0.153.1 and update in a follow-up PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this PR, 0.155.0 has come out. Once this will be merged we are going to bump the version of helmfile.