Fix the son files, so when hitting the expose IP, you get the default backend (if no ingress rules are defined/endpoint doesn’t exist)

This commit is contained in:
Peter Jausovec 2017-01-05 14:02:23 -08:00
Родитель ec10d39d89
Коммит b07ee10173
3 изменённых файлов: 10 добавлений и 9 удалений

Просмотреть файл

@ -3,9 +3,9 @@
"spec": {
"ports": [
{
"targetPort": 80,
"targetPort": 8080,
"protocol": "TCP",
"port": 8080,
"port": 80,
"name": "default-http-backend"
}
],
@ -15,6 +15,9 @@
},
"apiVersion": "v1",
"metadata": {
"name": "default-http-backend"
"name": "default-http-backend",
"labels": {
"app": "default-http-backend"
}
}
}

Просмотреть файл

@ -22,6 +22,9 @@
},
"apiVersion": "v1",
"metadata": {
"name": "nginx-ingress-lb"
"name": "nginx-ingress-lb",
"labels": {
"k8s-app": "nginx-ingress-lb"
}
}
}

Просмотреть файл

@ -9,11 +9,6 @@
},
"spec": {
"replicas": 1,
"selector": {
"matchLabels": {
"k8s-app": "nginx-ingress-lb"
}
},
"template": {
"metadata": {
"labels": {