@@ -17,6 +17,7 @@ var _ Yaml = (*Ingress)(nil)
17
17
type Ingress struct {
18
18
* networkv1.Ingress
19
19
service * types.ServiceConfig `yaml:"-"`
20
+ appName string `yaml:"-"`
20
21
}
21
22
22
23
// NewIngress creates a new Ingress from a compose service.
@@ -42,7 +43,11 @@ func NewIngress(service types.ServiceConfig, Chart *HelmChart) *Ingress {
42
43
43
44
// create the ingress
44
45
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
46
51
47
52
// Add the ingress host to the values.yaml
48
53
if Chart .Values [service .Name ] == nil {
@@ -63,7 +68,7 @@ func NewIngress(service types.ServiceConfig, Chart *HelmChart) *Ingress {
63
68
64
69
servicePortName := utils .GetServiceNameByPort (int (* mapping .Port ))
65
70
ingressService := & networkv1.IngressServiceBackend {
66
- Name : serviceName ,
71
+ Name : fullName ,
67
72
Port : networkv1.ServiceBackendPort {},
68
73
}
69
74
if servicePortName != "" {
@@ -74,26 +79,27 @@ func NewIngress(service types.ServiceConfig, Chart *HelmChart) *Ingress {
74
79
75
80
ing := & Ingress {
76
81
service : & service ,
82
+ appName : appName ,
77
83
Ingress : & networkv1.Ingress {
78
84
TypeMeta : metav1.TypeMeta {
79
85
Kind : "Ingress" ,
80
86
APIVersion : "networking.k8s.io/v1" ,
81
87
},
82
88
ObjectMeta : metav1.ObjectMeta {
83
- Name : utils . TplName ( service . Name , appName ) ,
84
- Labels : GetLabels (service . Name , appName ),
89
+ Name : fullName ,
90
+ Labels : GetLabels (serviceName , appName ),
85
91
Annotations : Annotations ,
86
92
},
87
93
Spec : networkv1.IngressSpec {
88
94
IngressClassName : & ingressClassName ,
89
95
Rules : []networkv1.IngressRule {
90
96
{
91
- Host : utils .TplValue (service . Name , "ingress.host" ),
97
+ Host : utils .TplValue (serviceName , "ingress.host" ),
92
98
IngressRuleValue : networkv1.IngressRuleValue {
93
99
HTTP : & networkv1.HTTPIngressRuleValue {
94
100
Paths : []networkv1.HTTPIngressPath {
95
101
{
96
- Path : utils .TplValue (service . Name , "ingress.path" ),
102
+ Path : utils .TplValue (serviceName , "ingress.path" ),
97
103
PathType : & pathType ,
98
104
Backend : networkv1.IngressBackend {
99
105
Service : ingressService ,
@@ -107,9 +113,9 @@ func NewIngress(service types.ServiceConfig, Chart *HelmChart) *Ingress {
107
113
TLS : []networkv1.IngressTLS {
108
114
{
109
115
Hosts : []string {
110
- `{{ tpl .Values.` + service . Name + `.ingress.host . }}` ,
116
+ `{{ tpl .Values.` + serviceName + `.ingress.host . }}` ,
111
117
},
112
- SecretName : `{{ include " ` + appName + `.fullname" . }}-` + service . Name + `-tls ` ,
118
+ SecretName : `{{ .Values. ` + serviceName + `.ingress.tls.secretName | default $tlsname }} ` ,
113
119
},
114
120
},
115
121
},
@@ -131,19 +137,15 @@ func (ingress *Ingress) Yaml() ([]byte, error) {
131
137
}
132
138
133
139
serviceName := ingress .service .Name
134
- if err != nil {
135
- return nil , err
136
- }
140
+
137
141
ret = UnWrapTPL (ret )
138
142
139
143
lines := strings .Split (string (ret ), "\n " )
140
144
141
145
// first pass, wrap the tls part with `{{- if .Values.serviceName.ingress.tlsEnabled -}}`
142
146
// and `{{- end -}}`
143
147
144
- from := - 1
145
- to := - 1
146
- spaces := - 1
148
+ from , to , spaces := - 1 , - 1 , - 1
147
149
for i , line := range lines {
148
150
if strings .Contains (line , "tls:" ) {
149
151
from = i
@@ -167,6 +169,8 @@ func (ingress *Ingress) Yaml() ([]byte, error) {
167
169
168
170
out := []string {
169
171
`{{- if .Values.` + serviceName + `.ingress.enabled -}}` ,
172
+ `{{- $fullname := include "` + ingress .appName + `.fullname" . -}}` ,
173
+ `{{- $tlsname := printf "%s-%s-tls" $fullname "` + ingress .service .Name + `" -}}` ,
170
174
}
171
175
for _ , line := range lines {
172
176
if strings .Contains (line , "loadBalancer: " ) {
0 commit comments