Commit ba586066 authored by pedrocjdpereira's avatar pedrocjdpereira
Browse files

Feature 10991 documentation

parent 7837ef27
Loading
Loading
Loading
Loading
Loading
+13 −1
Original line number Diff line number Diff line
@@ -1753,7 +1753,13 @@ Check in the cluster that pods are properly created:
- The pods associated to ldap should be using version `openldap:1.2.1` and have 1 replica
- The pods associated to ldap2 should be using version `openldap:1.2.1` and have 2 replicas

Check that the pods have the correct labels. Each deployed pod should have the following labels:
Check that the pods have the correct labels:

```bash
kubectl -n <NAMESPACE> describe pod <POD_NAME>
```

Each deployed pod should have the following labels:

```bash
managed-by=osm.etsi.org
@@ -1765,6 +1771,12 @@ osm.etsi.org/vnf-id=<vnf-id>
osm.etsi.org/vnfd-id=<vnfd-id>
```

To discover every pod associated with a NS instance you can perform the following query:

```bash
kubectl -n <NAMESPACE> get pods -l osm.etsi.org/ns-id=<NS_ID>
```

Now you can upgrade both NS instances:

```bash