Compare commits
1 Commits
master
...
svc-option
| Author | SHA1 | Date | |
|---|---|---|---|
|
3a1c170140
|
@@ -195,7 +195,7 @@ func (chart *HelmChart) generateDeployment(service types.ServiceConfig, deployme
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
// isgnored service
|
// is ignored service
|
||||||
if isIgnored(service) {
|
if isIgnored(service) {
|
||||||
logger.Info("Ignoring service ", service.Name)
|
logger.Info("Ignoring service ", service.Name)
|
||||||
return nil
|
return nil
|
||||||
|
|||||||
@@ -34,6 +34,7 @@ type Service struct {
|
|||||||
SamePod *string `yaml:"same-pod,omitempty" json:"same-pod,omitempty" jsonschema:"title=Same Pod,description=Service that should be in the same pod"`
|
SamePod *string `yaml:"same-pod,omitempty" json:"same-pod,omitempty" jsonschema:"title=Same Pod,description=Service that should be in the same pod"`
|
||||||
Description *string `yaml:"description,omitempty" json:"description,omitempty" jsonschema:"title=Description,description=Description of the service that will be injected in the values.yaml file"`
|
Description *string `yaml:"description,omitempty" json:"description,omitempty" jsonschema:"title=Description,description=Description of the service that will be injected in the values.yaml file"`
|
||||||
Ignore *bool `yaml:"ignore,omitempty" json:"ignore,omitempty" jsonschema:"title=Ignore,description=Ignore the service in the conversion"`
|
Ignore *bool `yaml:"ignore,omitempty" json:"ignore,omitempty" jsonschema:"title=Ignore,description=Ignore the service in the conversion"`
|
||||||
|
SvcOptional *bool `yaml:"svc-optional,omitempty" json:"svc-optional,omitempty" jsonschema:"title=SvcOptional,description=SvcOptional the service in the conversion"`
|
||||||
Dependencies []labelstructs.Dependency `yaml:"dependencies,omitempty" json:"dependencies,omitempty" jsonschema:"title=Dependencies,description=Services that should be injected in the Chart.yaml file"`
|
Dependencies []labelstructs.Dependency `yaml:"dependencies,omitempty" json:"dependencies,omitempty" jsonschema:"title=Dependencies,description=Services that should be injected in the Chart.yaml file"`
|
||||||
ConfigMapFiles *labelstructs.ConfigMapFiles `yaml:"configmap-files,omitempty" json:"configmap-files,omitempty" jsonschema:"title=ConfigMap Files,description=Files that should be injected as ConfigMap"`
|
ConfigMapFiles *labelstructs.ConfigMapFiles `yaml:"configmap-files,omitempty" json:"configmap-files,omitempty" jsonschema:"title=ConfigMap Files,description=Files that should be injected as ConfigMap"`
|
||||||
MapEnv *labelstructs.MapEnv `yaml:"map-env,omitempty" json:"map-env,omitempty" jsonschema:"title=Map Env,description=Map environment variables to another value"`
|
MapEnv *labelstructs.MapEnv `yaml:"map-env,omitempty" json:"map-env,omitempty" jsonschema:"title=Map Env,description=Map environment variables to another value"`
|
||||||
@@ -94,6 +95,7 @@ func OverrideWithConfig(project *types.Project) {
|
|||||||
mustGetLabelContent(s.SamePod, labels.LabelSamePod)
|
mustGetLabelContent(s.SamePod, labels.LabelSamePod)
|
||||||
mustGetLabelContent(s.Description, labels.LabelDescription)
|
mustGetLabelContent(s.Description, labels.LabelDescription)
|
||||||
mustGetLabelContent(s.Ignore, labels.LabelIgnore)
|
mustGetLabelContent(s.Ignore, labels.LabelIgnore)
|
||||||
|
mustGetLabelContent(s.SvcOptional, labels.LabelSvcOptional)
|
||||||
mustGetLabelContent(s.Dependencies, labels.LabelDependencies)
|
mustGetLabelContent(s.Dependencies, labels.LabelDependencies)
|
||||||
mustGetLabelContent(s.ConfigMapFiles, labels.LabelConfigMapFiles)
|
mustGetLabelContent(s.ConfigMapFiles, labels.LabelConfigMapFiles)
|
||||||
mustGetLabelContent(s.MapEnv, labels.LabelMapEnv)
|
mustGetLabelContent(s.MapEnv, labels.LabelMapEnv)
|
||||||
|
|||||||
@@ -30,6 +30,7 @@ const (
|
|||||||
LabelSamePod Label = KatenaryLabelPrefix + "/same-pod"
|
LabelSamePod Label = KatenaryLabelPrefix + "/same-pod"
|
||||||
LabelDescription Label = KatenaryLabelPrefix + "/description"
|
LabelDescription Label = KatenaryLabelPrefix + "/description"
|
||||||
LabelIgnore Label = KatenaryLabelPrefix + "/ignore"
|
LabelIgnore Label = KatenaryLabelPrefix + "/ignore"
|
||||||
|
LabelSvcOptional Label = KatenaryLabelPrefix + "/svc-optional"
|
||||||
LabelDependencies Label = KatenaryLabelPrefix + "/dependencies"
|
LabelDependencies Label = KatenaryLabelPrefix + "/dependencies"
|
||||||
LabelConfigMapFiles Label = KatenaryLabelPrefix + "/configmap-files"
|
LabelConfigMapFiles Label = KatenaryLabelPrefix + "/configmap-files"
|
||||||
LabelCronJob Label = KatenaryLabelPrefix + "/cronjob"
|
LabelCronJob Label = KatenaryLabelPrefix + "/cronjob"
|
||||||
|
|||||||
@@ -183,6 +183,12 @@
|
|||||||
example: "labels:\n {{ .KatenaryPrefix }}/ignore: \"true\""
|
example: "labels:\n {{ .KatenaryPrefix }}/ignore: \"true\""
|
||||||
type: "bool"
|
type: "bool"
|
||||||
|
|
||||||
|
"svc-optional":
|
||||||
|
short: "Make the service optional in the resulting helm chart"
|
||||||
|
long: "Making a service optional to be exported in helm chart."
|
||||||
|
example: "labels:\n {{ .KatenaryPrefix }}/svc-optional: \"true\""
|
||||||
|
type: "bool"
|
||||||
|
|
||||||
"dependencies":
|
"dependencies":
|
||||||
short: "Add Helm dependencies to the service."
|
short: "Add Helm dependencies to the service."
|
||||||
long: |-
|
long: |-
|
||||||
|
|||||||
@@ -84,6 +84,7 @@ func (s *Service) Yaml() ([]byte, error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Remove any loadBalancer lines that may have been added unintentionally.
|
||||||
lines := []string{}
|
lines := []string{}
|
||||||
for line := range strings.SplitSeq(string(y), "\n") {
|
for line := range strings.SplitSeq(string(y), "\n") {
|
||||||
if regexp.MustCompile(`^\s*loadBalancer:\s*`).MatchString(line) {
|
if regexp.MustCompile(`^\s*loadBalancer:\s*`).MatchString(line) {
|
||||||
@@ -93,5 +94,19 @@ func (s *Service) Yaml() ([]byte, error) {
|
|||||||
}
|
}
|
||||||
y = []byte(strings.Join(lines, "\n"))
|
y = []byte(strings.Join(lines, "\n"))
|
||||||
|
|
||||||
|
// If the service has the label "katenary.v3/svc-optional", wrap the output
|
||||||
|
// with a Helm values conditional.
|
||||||
|
if s.service != nil && s.service.Labels != nil {
|
||||||
|
if _, ok := s.service.Labels["katenary.v3/svc-optional"]; ok {
|
||||||
|
// Ensure we have a trailing newline before appending the closing block.
|
||||||
|
content := string(y)
|
||||||
|
if !strings.HasSuffix(content, "\n") {
|
||||||
|
content += "\n"
|
||||||
|
}
|
||||||
|
content = "{{- if .Values.service.enabled }}\n" + content + "{{- end }}\n"
|
||||||
|
y = []byte(content)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return y, err
|
return y, err
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -83,6 +83,14 @@ func isIgnored(service types.ServiceConfig) bool {
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// isSvcOptionald returns true if the service is optional.
|
||||||
|
func isSvcOptional(service types.ServiceConfig) bool {
|
||||||
|
if v, ok := service.Labels[labels.LabelSvcOptional]; ok {
|
||||||
|
return v == "true" || v == "yes" || v == "1"
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
// UnWrapTPL removes the line wrapping from a template.
|
// UnWrapTPL removes the line wrapping from a template.
|
||||||
func UnWrapTPL(in []byte) []byte {
|
func UnWrapTPL(in []byte) []byte {
|
||||||
return regexpLineWrap.ReplaceAll(in, []byte(" }}"))
|
return regexpLineWrap.ReplaceAll(in, []byte(" }}"))
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ func Parse(profiles []string, envFiles []string, dockerComposeFile ...string) (*
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
options, err := cli.NewProjectOptions(dockerComposeFile,
|
options, err := cli.NewProjectOptions(nil,
|
||||||
cli.WithProfiles(profiles),
|
cli.WithProfiles(profiles),
|
||||||
cli.WithInterpolation(true),
|
cli.WithInterpolation(true),
|
||||||
cli.WithDefaultConfigPath,
|
cli.WithDefaultConfigPath,
|
||||||
|
|||||||
Reference in New Issue
Block a user