SM
Size: a a a
SM
DS
AL
AL
AL
DS
{
rules: [
{
"host": d,
"http": {
"paths": [
{
"backend": {
"serviceName": "service-name",
"servicePort": "http"
},
"path": "/",
"pathType": "ImplementationSpecific"
}
]
}
} for d in ['www.' + domain, domain] ]
}
SM
AL
AL
AL
SM
AL
{
rules: [
{
"host": d,
"http": {
"paths": [
{
"backend": {
"serviceName": "service-name",
"servicePort": "http"
},
"path": "/",
"pathType": "ImplementationSpecific"
}
]
}
} for d in ['www.' + domain, domain] ]
}
AL
AL
AL
DS
{
rules: addWWWToRules(
{
"host": "example.com",
"http": {
"paths": [
{
"backend": {
"serviceName": "service-name",
"servicePort": "http"
},
"path": "/",
"pathType": "ImplementationSpecific"
}
]
}
})
}
AL
AL
{
rules: addWWWToRules(
{
"host": "example.com",
"http": {
"paths": [
{
"backend": {
"serviceName": "service-name",
"servicePort": "http"
},
"path": "/",
"pathType": "ImplementationSpecific"
}
]
}
})
}
SM
DS