-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6cbec79
commit 279f442
Showing
12 changed files
with
323 additions
and
11 deletions.
There are no files selected for viewing
Binary file not shown.
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
File renamed without changes.
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,154 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.2.4 | ||
creationTimestamp: null | ||
name: postgresqlconsumers.postgres.amazee.io | ||
spec: | ||
group: postgres.amazee.io | ||
names: | ||
kind: PostgreSQLConsumer | ||
listKind: PostgreSQLConsumerList | ||
plural: postgresqlconsumers | ||
singular: postgresqlconsumer | ||
scope: Namespaced | ||
validation: | ||
openAPIV3Schema: | ||
description: PostgreSQLConsumer is the Schema for the postgresqlconsumers API | ||
properties: | ||
apiVersion: | ||
description: 'APIVersion defines the versioned schema of this representation | ||
of an object. Servers should convert recognized schemas to the latest | ||
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' | ||
type: string | ||
kind: | ||
description: 'Kind is a string value representing the REST resource this | ||
object represents. Servers may infer this from the endpoint the client | ||
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
description: PostgreSQLConsumerSpec defines the desired state of PostgreSQLConsumer | ||
properties: | ||
consumer: | ||
description: PostgreSQLConsumerData defines the provider link for this | ||
consumer | ||
properties: | ||
database: | ||
type: string | ||
password: | ||
type: string | ||
services: | ||
description: PostgreSQLConsumerServices defines the provider link | ||
for this consumer | ||
properties: | ||
primary: | ||
type: string | ||
type: object | ||
username: | ||
type: string | ||
type: object | ||
environment: | ||
description: These are the spec options for consumers | ||
type: string | ||
provider: | ||
description: PostgreSQLConsumerProvider defines the provider link for | ||
this consumer | ||
properties: | ||
hostname: | ||
type: string | ||
name: | ||
type: string | ||
namespace: | ||
type: string | ||
port: | ||
type: string | ||
type: object | ||
type: object | ||
status: | ||
description: PostgreSQLConsumerStatus defines the observed state of PostgreSQLConsumer | ||
type: object | ||
type: object | ||
version: v1 | ||
versions: | ||
- name: v1 | ||
served: true | ||
storage: true | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: [] | ||
storedVersions: [] | ||
|
||
--- | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.2.4 | ||
creationTimestamp: null | ||
name: postgresqlproviders.postgres.amazee.io | ||
spec: | ||
group: postgres.amazee.io | ||
names: | ||
kind: PostgreSQLProvider | ||
listKind: PostgreSQLProviderList | ||
plural: postgresqlproviders | ||
singular: postgresqlprovider | ||
scope: Namespaced | ||
validation: | ||
openAPIV3Schema: | ||
description: PostgreSQLProvider is the Schema for the postgresqlproviders API | ||
properties: | ||
apiVersion: | ||
description: 'APIVersion defines the versioned schema of this representation | ||
of an object. Servers should convert recognized schemas to the latest | ||
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' | ||
type: string | ||
kind: | ||
description: 'Kind is a string value representing the REST resource this | ||
object represents. Servers may infer this from the endpoint the client | ||
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
description: PostgreSQLProviderSpec defines the desired state of PostgreSQLProvider | ||
properties: | ||
environment: | ||
description: These are the spec options for providers | ||
type: string | ||
hostname: | ||
type: string | ||
name: | ||
type: string | ||
namespace: | ||
type: string | ||
password: | ||
type: string | ||
port: | ||
type: string | ||
type: | ||
type: string | ||
user: | ||
type: string | ||
type: object | ||
status: | ||
description: PostgreSQLProviderStatus defines the observed state of PostgreSQLProvider | ||
type: object | ||
type: object | ||
version: v1 | ||
versions: | ||
- name: v1 | ||
served: true | ||
storage: true | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: [] | ||
storedVersions: [] |
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
Binary file not shown.
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,22 @@ | ||
# Patterns to ignore when building packages. | ||
# This supports shell glob matching, relative path matching, and | ||
# negation (prefixed with !). Only one pattern per line. | ||
.DS_Store | ||
# Common VCS dirs | ||
.git/ | ||
.gitignore | ||
.bzr/ | ||
.bzrignore | ||
.hg/ | ||
.hgignore | ||
.svn/ | ||
# Common backup files | ||
*.swp | ||
*.bak | ||
*.tmp | ||
*~ | ||
# Various IDEs | ||
.project | ||
.idea/ | ||
*.tmproj | ||
.vscode/ |
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,21 @@ | ||
apiVersion: v2 | ||
name: postgresqlprovider | ||
description: A Helm chart for PostgreSQLProvider used by dbaas-operator | ||
|
||
# A chart can be either an 'application' or a 'library' chart. | ||
# | ||
# Application charts are a collection of templates that can be packaged into versioned archives | ||
# to be deployed. | ||
# | ||
# Library charts provide useful utilities or functions for the chart developer. They're included as | ||
# a dependency of application charts to inject those utilities and functions into the rendering | ||
# pipeline. Library charts do not define any templates and therefore cannot be deployed. | ||
type: application | ||
|
||
# This is the chart version. This version number should be incremented each time you make changes | ||
# to the chart and its templates, including the app version. | ||
version: 0.1.0 | ||
|
||
# This is the version number of the application being deployed. This version number should be | ||
# incremented each time you make changes to the application. | ||
appVersion: 0.1.0 |
Oops, something went wrong.