4 changed files with 118 additions and 1 deletions
@ -0,0 +1,19 @@ |
|||
# SQL Server 2019 Helm Chart |
|||
|
|||
A Helm chart for deploying [Microsoft SQL Server 2019](https://www.microsoft.com/en-us/sql-server/sql-server-2019) on OpenShift. |
|||
|
|||
## Pre-requisites |
|||
|
|||
None. |
|||
|
|||
## Values |
|||
|
|||
Below is a table of each value used to configure this chart. |
|||
|
|||
| Value | Description | Default | Additional Information | |
|||
| ----- | ----------- | ------- | ---------------------- | |
|||
| `saPassword` | Administrator Password | `R3dH4t1!` | | |
|||
| `database.name` | Database Name | `eShop` | | |
|||
| `database.schema` | Database Schema | `eShop` | | |
|||
| `database.owner.username` | Username to access the database | `eShop` | | |
|||
| `database.owner.password` | Password to access the database | `R3dH4t1!` | | |
|||
@ -0,0 +1,67 @@ |
|||
{ |
|||
"$schema": "http://json-schema.org/draft-07/schema", |
|||
"type": "object", |
|||
"additionalProperties": false, |
|||
"properties": { |
|||
"saPassword": { |
|||
"type": "string", |
|||
"description": "SQL Server Administrator Password", |
|||
"title": "Administrator Password", |
|||
"default": "R3dH4t1!" |
|||
}, |
|||
"database": { |
|||
"type": "object", |
|||
"additionalProperties": false, |
|||
"properties": { |
|||
"name": { |
|||
"type": "string", |
|||
"title": "Database Name", |
|||
"description": "Name of the database to create", |
|||
"default": "eShop" |
|||
}, |
|||
"owner": { |
|||
"type": "object", |
|||
"additionalProperties": false, |
|||
"properties": { |
|||
"username": { |
|||
"title": "Username", |
|||
"description": "Username to access the database", |
|||
"type": "string", |
|||
"default": "eShop" |
|||
}, |
|||
"password": { |
|||
"title": "Password", |
|||
"description": "Password to access the database", |
|||
"type": "string", |
|||
"default": "R3dH4t1!" |
|||
} |
|||
}, |
|||
"required": [ |
|||
"password", |
|||
"username" |
|||
], |
|||
"title": "Database Owner", |
|||
"description": "Credentials of the database owner" |
|||
}, |
|||
"schema": { |
|||
"title": "Schema Name", |
|||
"type": "string", |
|||
"description": "Name of the schema to create", |
|||
"default": "eShop" |
|||
} |
|||
}, |
|||
"required": [ |
|||
"name", |
|||
"owner", |
|||
"schema" |
|||
], |
|||
"title": "Database", |
|||
"description": "Database creation" |
|||
} |
|||
}, |
|||
"required": [ |
|||
"database", |
|||
"saPassword" |
|||
], |
|||
"title": "Microsoft SQL Server 2019" |
|||
} |
|||
Loading…
Reference in new issue