Skip to content

Commit 5c93938

Browse files
committed
chore(tls): Add secretName to the values
The seret name for TLS wasn't editable, it may be useful to change it when we generate TLS certificates for specific installation.
1 parent 4d0e5b2 commit 5c93938

File tree

4 files changed

+133
-16
lines changed

4 files changed

+133
-16
lines changed

generator/converter.go

+25
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,12 @@ var unwantedLines = []string{
8585
"status:",
8686
}
8787

88+
var ingressTLSHelp = `# Ingress TLS configuration
89+
# If enabled, a secret containing the certificate and the key should be
90+
# created by the ingress controller. If the name if emtpy, so the secret
91+
# name is generated. You can specify the secret name to use your own secret.
92+
`
93+
8894
// keyRegExp checks if the line starts by a #
8995
var keyRegExp = regexp.MustCompile(`^\s*[^#]+:.*`)
9096

@@ -486,6 +492,24 @@ func addYAMLSelectorPath(values []byte) []byte {
486492
return []byte(strings.Join(toReturn, "\n"))
487493
}
488494

495+
// addTLSHelp adds a comment to the values.yaml file to explain how to
496+
// use the tls option.
497+
func addTLSHelp(values []byte) []byte {
498+
lines := strings.Split(string(values), "\n")
499+
for i, line := range lines {
500+
if strings.Contains(line, "tls:") {
501+
spaces := utils.CountStartingSpaces(line)
502+
spacesString := strings.Repeat(" ", spaces)
503+
// indent ingressClassHelper comment
504+
ingressTLSHelp := strings.ReplaceAll(ingressTLSHelp, "\n", "\n"+spacesString)
505+
ingressTLSHelp = strings.TrimRight(ingressTLSHelp, " ")
506+
ingressTLSHelp = spacesString + ingressTLSHelp
507+
lines[i] = ingressTLSHelp + line
508+
}
509+
}
510+
return []byte(strings.Join(lines, "\n"))
511+
}
512+
489513
func buildCharYamlFile(chart *HelmChart, project *types.Project, chartPath string) {
490514
// calculate the sha1 hash of the services
491515
yamlChart, err := utils.EncodeBasicYaml(chart)
@@ -537,6 +561,7 @@ func buildValues(chart *HelmChart, project *types.Project, valuesPath string) {
537561
values = addVariablesDoc(values, project)
538562
values = addMainTagAppDoc(values, project)
539563
values = addResourceHelp(values)
564+
values = addTLSHelp(values)
540565
values = addYAMLSelectorPath(values)
541566
values = append([]byte(headerHelp), values...)
542567

generator/ingress.go

+18-14
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ var _ Yaml = (*Ingress)(nil)
1717
type Ingress struct {
1818
*networkv1.Ingress
1919
service *types.ServiceConfig `yaml:"-"`
20+
appName string `yaml:"-"`
2021
}
2122

2223
// NewIngress creates a new Ingress from a compose service.
@@ -42,7 +43,11 @@ func NewIngress(service types.ServiceConfig, Chart *HelmChart) *Ingress {
4243

4344
// create the ingress
4445
pathType := networkv1.PathTypeImplementationSpecific
45-
serviceName := `{{ include "` + appName + `.fullname" . }}-` + service.Name
46+
47+
// fix the service name, and create the full name from variable name
48+
// which is injected in the YAML() method
49+
serviceName := strings.ReplaceAll(service.Name, "_", "-")
50+
fullName := `{{ $fullname }}-` + serviceName
4651

4752
// Add the ingress host to the values.yaml
4853
if Chart.Values[service.Name] == nil {
@@ -63,7 +68,7 @@ func NewIngress(service types.ServiceConfig, Chart *HelmChart) *Ingress {
6368

6469
servicePortName := utils.GetServiceNameByPort(int(*mapping.Port))
6570
ingressService := &networkv1.IngressServiceBackend{
66-
Name: serviceName,
71+
Name: fullName,
6772
Port: networkv1.ServiceBackendPort{},
6873
}
6974
if servicePortName != "" {
@@ -74,26 +79,27 @@ func NewIngress(service types.ServiceConfig, Chart *HelmChart) *Ingress {
7479

7580
ing := &Ingress{
7681
service: &service,
82+
appName: appName,
7783
Ingress: &networkv1.Ingress{
7884
TypeMeta: metav1.TypeMeta{
7985
Kind: "Ingress",
8086
APIVersion: "networking.k8s.io/v1",
8187
},
8288
ObjectMeta: metav1.ObjectMeta{
83-
Name: utils.TplName(service.Name, appName),
84-
Labels: GetLabels(service.Name, appName),
89+
Name: fullName,
90+
Labels: GetLabels(serviceName, appName),
8591
Annotations: Annotations,
8692
},
8793
Spec: networkv1.IngressSpec{
8894
IngressClassName: &ingressClassName,
8995
Rules: []networkv1.IngressRule{
9096
{
91-
Host: utils.TplValue(service.Name, "ingress.host"),
97+
Host: utils.TplValue(serviceName, "ingress.host"),
9298
IngressRuleValue: networkv1.IngressRuleValue{
9399
HTTP: &networkv1.HTTPIngressRuleValue{
94100
Paths: []networkv1.HTTPIngressPath{
95101
{
96-
Path: utils.TplValue(service.Name, "ingress.path"),
102+
Path: utils.TplValue(serviceName, "ingress.path"),
97103
PathType: &pathType,
98104
Backend: networkv1.IngressBackend{
99105
Service: ingressService,
@@ -107,9 +113,9 @@ func NewIngress(service types.ServiceConfig, Chart *HelmChart) *Ingress {
107113
TLS: []networkv1.IngressTLS{
108114
{
109115
Hosts: []string{
110-
`{{ tpl .Values.` + service.Name + `.ingress.host . }}`,
116+
`{{ tpl .Values.` + serviceName + `.ingress.host . }}`,
111117
},
112-
SecretName: `{{ include "` + appName + `.fullname" . }}-` + service.Name + `-tls`,
118+
SecretName: `{{ .Values.` + serviceName + `.ingress.tls.secretName | default $tlsname }}`,
113119
},
114120
},
115121
},
@@ -131,19 +137,15 @@ func (ingress *Ingress) Yaml() ([]byte, error) {
131137
}
132138

133139
serviceName := ingress.service.Name
134-
if err != nil {
135-
return nil, err
136-
}
140+
137141
ret = UnWrapTPL(ret)
138142

139143
lines := strings.Split(string(ret), "\n")
140144

141145
// first pass, wrap the tls part with `{{- if .Values.serviceName.ingress.tlsEnabled -}}`
142146
// and `{{- end -}}`
143147

144-
from := -1
145-
to := -1
146-
spaces := -1
148+
from, to, spaces := -1, -1, -1
147149
for i, line := range lines {
148150
if strings.Contains(line, "tls:") {
149151
from = i
@@ -167,6 +169,8 @@ func (ingress *Ingress) Yaml() ([]byte, error) {
167169

168170
out := []string{
169171
`{{- if .Values.` + serviceName + `.ingress.enabled -}}`,
172+
`{{- $fullname := include "` + ingress.appName + `.fullname" . -}}`,
173+
`{{- $tlsname := printf "%s-%s-tls" $fullname "` + ingress.service.Name + `" -}}`,
170174
}
171175
for _, line := range lines {
172176
if strings.Contains(line, "loadBalancer: ") {

generator/ingress_test.go

+84-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,11 @@ services:
3131
os.Chdir(tmpDir)
3232
defer os.Chdir(currentDir)
3333

34-
output := internalCompileTest(t, "-s", "templates/web/ingress.yaml", "--set", "web.ingress.enabled=true")
34+
output := internalCompileTest(
35+
t,
36+
"-s", "templates/web/ingress.yaml",
37+
"--set", "web.ingress.enabled=true",
38+
)
3539
ingress := v1.Ingress{}
3640
if err := yaml.Unmarshal([]byte(output), &ingress); err != nil {
3741
t.Errorf(unmarshalError, err)
@@ -43,3 +47,82 @@ services:
4347
t.Errorf("Expected host to be my.test.tld, got %s", ingress.Spec.Rules[0].Host)
4448
}
4549
}
50+
51+
func TestTLS(t *testing.T) {
52+
composeFile := `
53+
services:
54+
web:
55+
image: nginx:1.29
56+
ports:
57+
- 80:80
58+
- 443:443
59+
labels:
60+
%s/ingress: |-
61+
hostname: my.test.tld
62+
port: 80
63+
`
64+
composeFile = fmt.Sprintf(composeFile, labels.KatenaryLabelPrefix)
65+
tmpDir := setup(composeFile)
66+
defer teardown(tmpDir)
67+
68+
currentDir, _ := os.Getwd()
69+
os.Chdir(tmpDir)
70+
defer os.Chdir(currentDir)
71+
72+
output := internalCompileTest(
73+
t,
74+
"-s", "templates/web/ingress.yaml",
75+
"--set", "web.ingress.enabled=true",
76+
)
77+
ingress := v1.Ingress{}
78+
if err := yaml.Unmarshal([]byte(output), &ingress); err != nil {
79+
t.Errorf(unmarshalError, err)
80+
}
81+
// find the tls section
82+
tls := ingress.Spec.TLS
83+
if len(tls) != 1 {
84+
t.Errorf("Expected 1 tls section, got %d", len(tls))
85+
}
86+
}
87+
88+
func TestTLSName(t *testing.T) {
89+
composeFile := `
90+
services:
91+
web:
92+
image: nginx:1.29
93+
ports:
94+
- 80:80
95+
- 443:443
96+
labels:
97+
%s/ingress: |-
98+
hostname: my.test.tld
99+
port: 80
100+
`
101+
composeFile = fmt.Sprintf(composeFile, labels.KatenaryLabelPrefix)
102+
tmpDir := setup(composeFile)
103+
defer teardown(tmpDir)
104+
105+
currentDir, _ := os.Getwd()
106+
os.Chdir(tmpDir)
107+
defer os.Chdir(currentDir)
108+
109+
output := internalCompileTest(
110+
t,
111+
"-s",
112+
"templates/web/ingress.yaml",
113+
"--set", "web.ingress.enabled=true",
114+
"--set", "web.ingress.tls.secretName=mysecret",
115+
)
116+
ingress := v1.Ingress{}
117+
if err := yaml.Unmarshal([]byte(output), &ingress); err != nil {
118+
t.Errorf(unmarshalError, err)
119+
}
120+
// find the tls section
121+
tls := ingress.Spec.TLS
122+
if len(tls) != 1 {
123+
t.Errorf("Expected 1 tls section, got %d", len(tls))
124+
}
125+
if tls[0].SecretName != "mysecret" {
126+
t.Errorf("Expected secretName to be mysecret, got %s", tls[0].SecretName)
127+
}
128+
}

generator/values.go

+6-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ type PersistenceValue struct {
2121
}
2222

2323
type TLS struct {
24-
Enabled bool `yaml:"enabled"`
24+
Enabled bool `yaml:"enabled"`
25+
SecretName string `yaml:"secretName"`
2526
}
2627

2728
// IngressValue is a ingress configuration that will be saved in values.yaml.
@@ -92,6 +93,10 @@ func (v *Value) AddIngress(host, path string) {
9293
Host: host,
9394
Path: path,
9495
Class: "-",
96+
TLS: TLS{
97+
Enabled: true,
98+
SecretName: "",
99+
},
95100
}
96101
}
97102

0 commit comments

Comments
 (0)