Fix bug 1707 - Adding non-root user to run POL
[osm/devops.git] / installers / charm / pol / config.yaml
index 59f695b..0279bd5 100644 (file)
@@ -27,3 +27,29 @@ options:
   mongodb_uri:
     type: string
     description: MongoDB URI (external database)
+  mysql_uri:
+    type: string
+    description: |
+      Mysql URI with the following format:
+        mysql://<user>:<password>@<mysql_host>:<mysql_port>/<database>
+  image_pull_policy:
+    type: string
+    description: |
+      ImagePullPolicy configuration for the pod.
+      Possible values: always, ifnotpresent, never
+    default: always
+  debug_mode:
+    description: |
+      If true, debug mode is activated. It means that the service will not run,
+      and instead, the command for the container will be a `sleep infinity`.
+      Note: If enabled, security_context will be disabled.
+    type: boolean
+    default: false
+  debug_pubkey:
+    description: |
+      Public SSH key that will be injected to the application pod.
+    type: string
+  security_context:
+    description: Enables the security context of the pods
+    type: boolean
+    default: false