-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Merge pull request #126 from vshn/add/keycloak_bootstrap
Add Keycloak provisioning
- v4.125.3
- v4.125.2
- v4.125.1
- v4.125.0
- v4.124.1
- v4.124.0
- v4.123.3
- v4.123.2
- v4.123.1
- v4.123.0
- v4.122.0
- v4.121.4
- v4.121.3
- v4.121.2
- v4.121.1
- v4.121.0
- v4.120.5
- v4.120.4
- v4.120.3
- v4.120.2
- v4.120.1
- v4.120.0
- v4.119.1
- v4.119.0
- v4.118.3
- v4.118.2
- v4.118.1
- v4.118.0
- v4.117.0
- v4.116.1
- v4.116.0
- v4.115.1
- v4.115.0
- v4.114.0
- v4.113.0
- v4.112.0
- v4.111.0
- v4.110.0
- v4.109.0
- v4.108.0
- v4.107.0
- v4.106.4
- v4.106.3
- v4.106.2
- v4.106.1
- v4.106.0
- v4.105.3
- v4.105.2
- v4.105.1
- v4.105.0
- v4.104.1
- v4.104.0
- v4.103.0
- v4.102.2
- v4.102.1
- v4.102.0
- v4.101.1
- v4.101.0
- v4.100.2
- v4.100.1
- v4.100.0
- v4.99.1
- v4.99.0
- v4.98.1
- v4.98.0
- v4.97.2
- v4.97.1
- v4.97.0
- v4.96.1
- v4.96.0
- v4.95.1
- v4.95.0
- v4.94.1
- v4.94.0
- v4.93.2
- v4.93.1
- v4.93.0
- v4.92.9
- v4.92.8
- v4.92.7
- v4.92.6
- v4.92.5
- v4.92.4
- v4.92.3
- v4.92.2
- v4.92.1
- v4.92.0
- v4.91.0
- v4.90.0
- v4.89.0
- v4.88.0
- v4.87.3
- v4.87.2
- v4.87.1
- v4.87.0
- v4.86.0
- v4.85.0
- v4.84.2
- v4.84.1
- v4.84.0
- v4.83.2
- v4.83.1
- v4.83.0
- v4.82.0
- v4.81.0
- v4.80.0
- v4.79.3
- v4.79.2
- v4.79.1
- v4.79.0
- v4.78.3
- v4.78.2
- v4.78.1
- v4.78.0
- v4.77.2
- v4.77.1
- v4.77.0
- v4.76.0
- v4.75.0
- v4.74.0
- v4.73.1
- v4.73.0
- v4.72.0
- v4.71.2
- v4.71.1
- v4.71.0
- v4.70.0
- v4.69.0
- v4.68.0
- v4.67.0
- v4.66.2
- v4.66.1
- v4.66.0
- v4.65.0
- v4.64.3
- v4.64.2
- v4.64.1
- v4.64.0
- v4.63.1
- v4.63.0
- v4.62.2
- v4.62.1
- v4.62.0
- v4.61.0
- v4.60.4
- v4.60.3
- v4.60.2
- v4.60.1
- v4.60.0
- v4.59.0
- v4.58.1
- v4.58.0
- v4.57.0
- v4.56.0
- v4.55.0
- v4.54.0
- v4.53.0
Showing
41 changed files
with
12,481 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package v1 | ||
|
||
import ( | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
) | ||
|
||
// +kubebuilder:object:root=true | ||
|
||
// SGPoolingConfig is the API for creating pgbouncer configs clusters. | ||
type SGPoolingConfig struct { | ||
metav1.TypeMeta `json:",inline"` | ||
metav1.ObjectMeta `json:"metadata,omitempty"` | ||
|
||
// Spec contains the custom configurations for the pgbouncer. | ||
Spec SGPoolingConfigSpec `json:"spec"` | ||
|
||
// Status contains the default settings for the pgbouncer. | ||
Status SGPoolingConfigStatus `json:"status,omitempty"` | ||
} | ||
|
||
// +kubebuilder:object:root=true | ||
|
||
type SGPoolingConfigList struct { | ||
metav1.TypeMeta `json:",inline"` | ||
metav1.ListMeta `json:"metadata,omitempty"` | ||
|
||
Items []SGPoolingConfig `json:"items"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
openapi: "3.0.2" | ||
paths: | ||
"/spec": | ||
get: | ||
responses: | ||
"200": | ||
content: | ||
"application/json": | ||
schema: | ||
"$ref": "#/components/schemas/SGPoolingConfigSpec" | ||
"/status": | ||
get: | ||
responses: | ||
"200": | ||
content: | ||
"application/json": | ||
schema: | ||
"$ref": "#/components/schemas/SGPoolingConfigStatus" | ||
components: | ||
schemas: | ||
SGPoolingConfigSpec: | ||
type: object | ||
properties: | ||
pgBouncer: | ||
type: object | ||
description: | | ||
Connection pooling configuration based on PgBouncer. | ||
properties: | ||
pgbouncer.ini: | ||
type: object | ||
description: | | ||
The `pgbouncer.ini` parameters the configuration contains, represented as an object where the keys are valid names for the `pgbouncer.ini` configuration file parameters. | ||
Check [pgbouncer configuration](https://www.pgbouncer.org/config.html#generic-settings) for more information about supported parameters. | ||
properties: | ||
pgbouncer: | ||
type: object | ||
additionalProperties: true | ||
description: | | ||
The `pgbouncer.ini` (Section [pgbouncer]) parameters the configuration contains, represented as an object where the keys are valid names for the `pgbouncer.ini` configuration file parameters. | ||
Check [pgbouncer configuration](https://www.pgbouncer.org/config.html#generic-settings) for more information about supported parameters | ||
databases: | ||
type: object | ||
additionalProperties: | ||
type: object | ||
additionalProperties: true | ||
description: | | ||
The `pgbouncer.ini` (Section [databases]) parameters the configuration contains, represented as an object where the keys are valid names for the `pgbouncer.ini` configuration file parameters. | ||
Check [pgbouncer configuration](https://www.pgbouncer.org/config.html#section-databases) for more information about supported parameters. | ||
users: | ||
type: object | ||
additionalProperties: | ||
type: object | ||
additionalProperties: true | ||
description: | | ||
The `pgbouncer.ini` (Section [users]) parameters the configuration contains, represented as an object where the keys are valid names for the `pgbouncer.ini` configuration file parameters. | ||
Check [pgbouncer configuration](https://www.pgbouncer.org/config.html#section-users) for more information about supported parameters. | ||
SGPoolingConfigStatus: | ||
type: object | ||
properties: | ||
pgBouncer: | ||
type: object | ||
description: | | ||
Connection pooling configuration status based on PgBouncer. | ||
properties: | ||
defaultParameters: | ||
type: object | ||
additionalProperties: | ||
type: string | ||
description: | | ||
The `pgbouncer.ini` default parameters parameters which are used if not set. | ||
required: ["defaultParameters"] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.