Adding ImagePullPolicy config option to OSM Charms
[osm/devops.git] / installers / charm / pla / config.yaml
index e0aeca4..75b19d8 100644 (file)
 # limitations under the License.
 
 options:
-  image:
-    description: Docker image name
-    type: string
-    default: opensourcemano/pla:8
-  port:
-    description: Port number
-    type: int
-    default: 8080 # Fake port
   log_level:
     description: Log level
     type: string
     default: INFO
-  database:
-    description: Database name
-    type: string
-    default: pla
-  database_common_key:
+  database_commonkey:
     description: Common Key for Mongo database
     type: string
     default: osm
+  mongodb_uri:
+    type: string
+    description: MongoDB URI (external database)
+  image_pull_policy:
+    type: string
+    description: |
+      ImagePullPolicy configuration for the pod.
+      Possible values: always, ifnotpresent, never
+    default: always