Fix installation to use 9 tag as default for docker images 51/10151/4
authorgarciadeblas <gerardo.garciadeblas@telefonica.com>
Mon, 21 Dec 2020 11:50:36 +0000 (11:50 +0000)
committerbeierlm <mark.beierl@canonical.com>
Fri, 15 Jan 2021 18:42:38 +0000 (19:42 +0100)
Change-Id: Ia0bed5627301fa7bbcaa5a5229ea9138f70d2d92
Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
12 files changed:
installers/docker/docker-compose-lightui.yaml
installers/docker/docker-compose.yaml
installers/docker/osm_pla/docker-compose.yaml
installers/docker/osm_pla/pla.yaml
installers/docker/osm_pods/keystone.yaml
installers/docker/osm_pods/lcm.yaml
installers/docker/osm_pods/light-ui.yaml
installers/docker/osm_pods/mon.yaml
installers/docker/osm_pods/nbi.yaml
installers/docker/osm_pods/ng-ui.yaml
installers/docker/osm_pods/pol.yaml
installers/docker/osm_pods/ro.yaml

index 1b23edd..3795a4c 100644 (file)
@@ -26,7 +26,7 @@ networks:
     #  com.docker.network.driver.mtu: "1446"
 services:
   light-ui:
-    image: ${DOCKER_USER:-opensourcemano}/light-ui:${TAG:-8}
+    image: ${DOCKER_USER:-opensourcemano}/light-ui:${TAG:-9}
     networks:
       - netOSM
     environment:
index ea3661e..0877d81 100644 (file)
@@ -118,7 +118,7 @@ services:
     networks:
       - netOSM
   keystone:
-    image: ${DOCKER_USER:-opensourcemano}/keystone:${TAG:-8}
+    image: ${DOCKER_USER:-opensourcemano}/keystone:${TAG:-9}
     networks:
       - netOSM
     environment:
@@ -133,7 +133,7 @@ services:
         max-size: "100m"
         max-file: "2"
   nbi:
-    image: ${DOCKER_USER:-opensourcemano}/nbi:${TAG:-8}
+    image: ${DOCKER_USER:-opensourcemano}/nbi:${TAG:-9}
     networks:
       - netOSM
     volumes:
@@ -154,7 +154,7 @@ services:
     #  - kafka
     #  - mongo
   lcm:
-    image: ${DOCKER_USER:-opensourcemano}/lcm:${TAG:-8}
+    image: ${DOCKER_USER:-opensourcemano}/lcm:${TAG:-9}
     networks:
       - netOSM
     volumes:
@@ -193,7 +193,7 @@ services:
 #    ports:
 #      - "3306:3306"
   ro:
-    image: ${DOCKER_USER:-opensourcemano}/ro:${TAG:-8}
+    image: ${DOCKER_USER:-opensourcemano}/ro:${TAG:-9}
     networks:
       - netOSM
     environment:
@@ -213,7 +213,7 @@ services:
         max-size: "100m"
         max-file: "2"
   mon:
-    image: ${DOCKER_USER:-opensourcemano}/mon:${TAG:-8}
+    image: ${DOCKER_USER:-opensourcemano}/mon:${TAG:-9}
     networks:
       - netOSM
     volumes:
@@ -233,7 +233,7 @@ services:
             max-file: 5
             max-size: 10m
   pol:
-    image: ${DOCKER_USER:-opensourcemano}/pol:${TAG:-8}
+    image: ${DOCKER_USER:-opensourcemano}/pol:${TAG:-9}
     networks:
       - netOSM
     volumes:
index aae303f..1b101e3 100644 (file)
@@ -26,7 +26,7 @@ networks:
     #  com.docker.network.driver.mtu: "1446"
 services:
   pla:
-    image: ${DOCKER_USER:-opensourcemano}/pla:${TAG:-8}
+    image: ${DOCKER_USER:-opensourcemano}/pla:${TAG:-9}
     networks:
       - netOSM
     logging:
index dfd00ab..7220489 100644 (file)
@@ -35,7 +35,7 @@ spec:
          command: ["sh", "-c", "until (nc -zvw1 kafka 9092 && nc -zvw1 mongo 27017 ); do sleep 3; done; exit 0"]
       containers:
       - name: pla
-        image: opensourcemano/pla:7
+        image: opensourcemano/pla:9
         env:
         - name: OSMPLA_DATABASE_HOST
           value: mongo
index 051d902..dfb242a 100644 (file)
@@ -46,7 +46,7 @@ spec:
     spec:
       containers:
       - name: keystone
-        image: opensourcemano/keystone:8
+        image: opensourcemano/keystone:9
         ports:
         - containerPort: 5000
           protocol: TCP
index ccaa57a..f66b9d3 100644 (file)
@@ -36,7 +36,7 @@ spec:
          command: ["sh", "-c", "until (nc -zvw1 kafka 9092 && nc -zvw1 ro 9090 && nc -zvw1 mongodb-k8s 27017 ); do sleep 3; done; exit 0"]
       containers:
       - name: lcm
-        image: opensourcemano/lcm:8
+        image: opensourcemano/lcm:9
         env:
         - name: OSMLCM_RO_HOST
           value: ro
index 9f09fa3..720c395 100644 (file)
@@ -46,7 +46,7 @@ spec:
     spec:
       containers:
       - name: light-ui
-        image: opensourcemano/light-ui:8
+        image: opensourcemano/light-ui:9
         envFrom:
         - secretRef:
             name: lwui-secret
index 490889f..c71325f 100644 (file)
@@ -50,7 +50,7 @@ spec:
         command: ["sh", "-c", "until (nc -zvw1 kafka 9092 && nc -zvw1 mongodb-k8s 27017); do sleep 3; done; exit 0"]
       containers:
       - name: mon
-        image: opensourcemano/mon:8
+        image: opensourcemano/mon:9
         ports:
         - containerPort: 8662
           protocol: TCP
index 87a459d..e6fdae1 100644 (file)
@@ -50,7 +50,7 @@ spec:
         command: ["sh", "-c", "until (nc -zvw1 kafka 9092 && nc -zvw1 mongodb-k8s 27017); do sleep 3; done; exit 0"]
       containers:
       - name: nbi
-        image: opensourcemano/nbi:8
+        image: opensourcemano/nbi:9
         ports:
         - containerPort: 9999
           protocol: TCP
index 1f430f1..f2aa915 100644 (file)
@@ -46,7 +46,7 @@ spec:
     spec:
       containers:
       - name: ng-ui
-        image: opensourcemano/ng-ui:8
+        image: opensourcemano/ng-ui:9
         ports:
         - containerPort: 80
           protocol: TCP
index 063a976..9e7835f 100644 (file)
@@ -36,7 +36,7 @@ spec:
         command: ["sh", "-c", "until (nc -zvw1 kafka 9092 && nc -zvw1 mongodb-k8s 27017); do sleep 3; done; exit 0"]
       containers:
       - name: pol
-        image: opensourcemano/pol:8
+        image: opensourcemano/pol:9
         env:
          - name: OSMPOL_MESSAGE_HOST
            value: kafka
index e3ef647..1c55f99 100644 (file)
@@ -50,7 +50,7 @@ spec:
         command: ["sh", "-c", "until (nc -zvw1 kafka 9092 && nc -zvw1 mongodb-k8s 27017 ); do sleep 3; done; exit 0"]
       containers:
       - name: ro
-        image: opensourcemano/ro:8
+        image: opensourcemano/ro:9
         ports:
         - containerPort: 9090
           protocol: TCP