aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/dcaegen2/values.yaml
AgeCommit message (Expand)AuthorFilesLines
2019-05-01dcae release version tagVijay Venkatesh Kumar1-2/+2
2019-04-10Update image versionsJack Lucas1-2/+5
2018-08-14License Addition for Dcaegen2,Policy,DmaapDurgpal1-0/+1
2018-05-10Improve docker registry secret managementBorislavG1-1/+0
2018-04-22Add DCAE Cloudify-Manager supportBorislavG1-6/+8
2018-04-02Add chart for redis clusterBorislavG1-0/+2
2018-03-22License addition in all yamlsvaibhav_16dec1-0/+14
2018-03-18Removing tag from dcaegen2mayankg27031-3/+2
2017-12-08Migrate to R1 released docker imagesAlexis de Talhouƫt1-1/+1
2017-09-21dcaegen2 bootstrap container in K8sMandeep Khinda1-0/+6
#dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
{
  "$schema": "http://json-schema.org/schema#",
  "type": "object",
  "properties": {
    "ingress": {
      "type": "object",
      "form": true,
      "title": "Ingress details",
      "properties": {
        "enabled": {
          "type": "boolean",
          "form": true,
          "title": "Use a custom hostname",
          "description": "Enable the ingress resource that allows you to access the NGINX installation."
        },
        "hostname": {
          "type": "string",
          "form": true,
          "title": "Hostname",
          "hidden": {
            "value": false,
            "path": "ingress/enabled"
          }
        }
      }
    },
    "service": {
      "type": "object",
      "form": true,
      "title": "Service Configuration",
      "properties": {
        "type": {
          "type": "string",
          "form": true,
          "title": "Service Type",
          "description": "Allowed values: \"ClusterIP\", \"NodePort\" and \"LoadBalancer\""
        }
      }
    },
    "replicaCount": {
      "type": "integer",
      "form": true,
      "title": "Number of replicas",
      "description": "Number of replicas to deploy"
    },
    "serverBlock": {
      "type": "string",
      "form": true,
      "title": "Custom server block",
      "description": "Custom server block to be added to NGINX configuration"
    },
    "streamServerBlock": {
      "type": "string",
      "form": true,
      "title": "Custom stream server block",
      "description": "Custom stream server block to be added to NGINX configuration"
    },
    "containerSecurityContext": {
      "type": "object",
      "form": true,
      "title": "NGINX containers' Security Context",
      "properties": {
        "enabled": {
          "type": "boolean",
          "form": true,
          "title": "Enable Security Context",
          "description": "Whether to enable NGINX containers' Security Context"
        },
        "runAsUser": {
          "type": "integer",
          "form": true,
          "title": "ID of the user",
          "description": "The UID of the user NGINX containers will run as"
        }
      }
    },
    "podSecurityContext": {
      "type": "object",
      "form": true,
      "title": "NGINX pods' Security Context",
      "properties": {
        "enabled": {
          "type": "boolean",
          "form": true,
          "title": "Enable Security Context",
          "description": "Whether to enable NGINX pods' Security Context"
        },
        "fsGroup": {
          "type": "integer",
          "form": true,
          "title": "ID of the group",
          "description": "The GID of the group NGINX pods will run as"
        }
      }
    },
    "metrics": {
      "type": "object",
      "form": true,
      "title": "Prometheus metrics details",
      "properties": {
        "enabled": {
          "type": "boolean",
          "title": "Create Prometheus metrics exporter",
          "description": "Create a side-car container to expose Prometheus metrics",
          "form": true
        },
        "serviceMonitor": {
          "type": "object",
          "properties": {
            "enabled": {
              "type": "boolean",
              "title": "Create Prometheus Operator ServiceMonitor",
              "description": "Create a ServiceMonitor to track metrics using Prometheus Operator",
              "form": true,
              "hidden": {
                "value": false,
                "path": "metrics/enabled"
              }
            }
          }
        }
      }
    }
  }
}