
The following test at sol-kubernetes-v2 takes longer. ``` tacker.tests.functional.sol_kubernetes_v2.test_vnflcm_basic .VnfLcmKubernetesTest.test_basic_lcms_max [830.095575s] ... ok ``` This occurs because the service takes a long time to delete. If it takes more longer, the test will fail. This patch changes the following to stabilize sol-kubernetes-v2 job. * Set ``service.type`` to ``NodePort`` of service manifest file to reduce the time it takes to complete the deletion of resources. And also change ``service.type`` to ``NodePort`` along with the other manifest files. Change-Id: Ib04cbbbf08a4e0b62d9b6d55b58593757d01a569
17 lines
257 B
YAML
17 lines
257 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
labels:
|
|
app: webserver
|
|
vdu_name: curry-svc-vdu001
|
|
name: curry-svc-vdu001
|
|
namespace: default
|
|
spec:
|
|
ports:
|
|
- name: http
|
|
port: 80
|
|
targetPort: 8080
|
|
selector:
|
|
app: webserver
|
|
type: NodePort
|