remove schema defaults
This commit is contained in:
parent
ab8ae7b7c9
commit
c3f8d753e8
|
@ -1,24 +0,0 @@
|
|||
apiVersion: v1
|
||||
name: couchdb
|
||||
<<<<<<< HEAD
|
||||
version: 3.3.2
|
||||
=======
|
||||
version: 3.3.0
|
||||
>>>>>>> Bump chart version and publish
|
||||
appVersion: 2.3.1
|
||||
description: A database featuring seamless multi-master sync, that scales from
|
||||
big data to mobile, with an intuitive HTTP/JSON API and designed for
|
||||
reliability.
|
||||
keywords:
|
||||
- couchdb
|
||||
- database
|
||||
- nosql
|
||||
home: https://couchdb.apache.org/
|
||||
sources:
|
||||
- https://github.com/apache/couchdb-docker
|
||||
maintainers:
|
||||
- name: kocolosk
|
||||
email: kocolosk@apache.org
|
||||
- name: willholley
|
||||
email: willholley@apache.org
|
||||
icon: http://couchdb.apache.org/CouchDB-visual-identity/logo/CouchDB-couch-symbol.svg
|
|
@ -1,178 +0,0 @@
|
|||
{
|
||||
"$schema": "http://json-schema.org/schema#",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"type": "string",
|
||||
"title": "MySQL architecture",
|
||||
"form": true,
|
||||
"description": "Allowed values: `standalone` or `replication`",
|
||||
"enum": ["standalone", "replication"]
|
||||
},
|
||||
"auth": {
|
||||
"type": "object",
|
||||
"title": "Authentication configuration",
|
||||
"form": true,
|
||||
"required": ["database", "username", "password"],
|
||||
"properties": {
|
||||
"rootPassword": {
|
||||
"type": "string",
|
||||
"title": "MySQL root password",
|
||||
"description": "Defaults to a random 10-character alphanumeric string if not set"
|
||||
},
|
||||
"database": {
|
||||
"type": "string",
|
||||
"title": "MySQL custom database name"
|
||||
},
|
||||
"username": {
|
||||
"type": "string",
|
||||
"title": "MySQL custom username"
|
||||
},
|
||||
"password": {
|
||||
"type": "string",
|
||||
"title": "MySQL custom password"
|
||||
},
|
||||
"replicationUser": {
|
||||
"type": "string",
|
||||
"title": "MySQL replication username"
|
||||
},
|
||||
"replicationPassword": {
|
||||
"type": "string",
|
||||
"title": "MySQL replication password"
|
||||
}
|
||||
}
|
||||
},
|
||||
"primary": {
|
||||
"type": "object",
|
||||
"title": "Primary database configuration",
|
||||
"form": true,
|
||||
"properties": {
|
||||
"podSecurityContext": {
|
||||
"type": "object",
|
||||
"title": "MySQL primary Pod security context",
|
||||
"properties": {
|
||||
"enabled": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"fsGroup": {
|
||||
"type": "integer",
|
||||
"default": 1001,
|
||||
"hidden": {
|
||||
"value": false,
|
||||
"path": "primary/podSecurityContext/enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"containerSecurityContext": {
|
||||
"type": "object",
|
||||
"title": "MySQL primary container security context",
|
||||
"properties": {
|
||||
"enabled": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"runAsUser": {
|
||||
"type": "integer",
|
||||
"default": 1001,
|
||||
"hidden": {
|
||||
"value": false,
|
||||
"path": "primary/containerSecurityContext/enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"persistence": {
|
||||
"type": "object",
|
||||
"title": "Enable persistence using Persistent Volume Claims",
|
||||
"properties": {
|
||||
"enabled": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"title": "If true, use a Persistent Volume Claim, If false, use emptyDir"
|
||||
},
|
||||
"size": {
|
||||
"type": "string",
|
||||
"title": "Persistent Volume Size",
|
||||
"form": true,
|
||||
"render": "slider",
|
||||
"sliderMin": 1,
|
||||
"sliderUnit": "Gi",
|
||||
"hidden": {
|
||||
"value": false,
|
||||
"path": "primary/persistence/enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"secondary": {
|
||||
"type": "object",
|
||||
"title": "Secondary database configuration",
|
||||
"form": true,
|
||||
"properties": {
|
||||
"podSecurityContext": {
|
||||
"type": "object",
|
||||
"title": "MySQL secondary Pod security context",
|
||||
"properties": {
|
||||
"enabled": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"fsGroup": {
|
||||
"type": "integer",
|
||||
"default": 1001,
|
||||
"hidden": {
|
||||
"value": false,
|
||||
"path": "secondary/podSecurityContext/enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"containerSecurityContext": {
|
||||
"type": "object",
|
||||
"title": "MySQL secondary container security context",
|
||||
"properties": {
|
||||
"enabled": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"runAsUser": {
|
||||
"type": "integer",
|
||||
"default": 1001,
|
||||
"hidden": {
|
||||
"value": false,
|
||||
"path": "secondary/containerSecurityContext/enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"persistence": {
|
||||
"type": "object",
|
||||
"title": "Enable persistence using Persistent Volume Claims",
|
||||
"properties": {
|
||||
"enabled": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"title": "If true, use a Persistent Volume Claim, If false, use emptyDir"
|
||||
},
|
||||
"size": {
|
||||
"type": "string",
|
||||
"title": "Persistent Volume Size",
|
||||
"form": true,
|
||||
"render": "slider",
|
||||
"sliderMin": 1,
|
||||
"sliderUnit": "Gi",
|
||||
"hidden": {
|
||||
"value": false,
|
||||
"path": "secondary/persistence/enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue