24 lines
432 B
JSON
24 lines
432 B
JSON
{
|
|
"apiVersion": "v1",
|
|
"kind": "Service",
|
|
"metadata": {
|
|
"name": "php-web",
|
|
"namespace": "fc-php"
|
|
},
|
|
"spec": {
|
|
"internalTrafficPolicy": "Cluster",
|
|
"ports": [
|
|
{
|
|
"port": 5400,
|
|
"protocol": "TCP",
|
|
"targetPort": 5400
|
|
}
|
|
],
|
|
"selector": {
|
|
"app.kubernetes.io/name": "php-web"
|
|
},
|
|
"sessionAffinity": "None",
|
|
"type": "ClusterIP"
|
|
}
|
|
}
|