mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-12 16:10:05 +01:00
26 lines
399 B
JSON
26 lines
399 B
JSON
{
|
|
"kind": "Service",
|
|
"apiVersion": "v1",
|
|
"metadata": {
|
|
"name": "nginx"
|
|
},
|
|
"spec": {
|
|
"selector": {
|
|
"app": "nginx"
|
|
},
|
|
"ports": [
|
|
{
|
|
"name": "http",
|
|
"protocol": "TCP",
|
|
"port": 80,
|
|
"targetPort": 80
|
|
},
|
|
{
|
|
"name": "https",
|
|
"protocol": "TCP",
|
|
"port": 443,
|
|
"targetPort": 443
|
|
}
|
|
]
|
|
}
|
|
}
|