Adding ImagePullPolicy config option to OSM Charms
[osm/devops.git] / installers / charm / prometheus / config.yaml
index d953de3..6ce1613 100644 (file)
@@ -35,6 +35,11 @@ options:
       of Keystone, it may need to be configured to handle the requested size.
       Note: if set to 0, there is no limit.
     default: 0
+  ingress_class:
+    type: string
+    description: |
+      Ingress class name. This is useful for selecting the ingress to be used
+      in case there are multiple ingresses in the underlying k8s clusters.
   ingress_whitelist_source_range:
     type: string
     description: |
@@ -52,7 +57,17 @@ options:
     type: string
     description: Ingress URL
     default: ""
+  cluster_issuer:
+    type: string
+    description: Name of the cluster issuer for TLS certificates
+    default: ""
   enable_web_admin_api:
     type: boolean
     description: Boolean to enable the web admin api
-    default: False
+    default: false
+  image_pull_policy:
+    type: string
+    description: |
+      ImagePullPolicy configuration for the pod.
+      Possible values: always, ifnotpresent, never
+    default: always