Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added more available crds #132

Merged
merged 1 commit into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
118 changes: 118 additions & 0 deletions bootstrap/rpc/crds/blockfrostport.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
{
"apiVersion": "apiextensions.k8s.io/v1",
"kind": "CustomResourceDefinition",
"metadata": {
"name": "blockfrostports.demeter.run"
},
"spec": {
"group": "demeter.run",
"names": {
"categories": [
"demeter-port"
],
"kind": "BlockfrostPort",
"plural": "blockfrostports",
"shortNames": [
"bfpts"
],
"singular": "blockfrostport"
},
"scope": "Namespaced",
"versions": [
{
"additionalPrinterColumns": [
{
"jsonPath": ".spec.network",
"name": "Network",
"type": "string"
},
{
"jsonPath": ".spec.throughputTier",
"name": "Throughput Tier",
"type": "string"
},
{
"jsonPath": ".status.endpointUrl",
"name": "Endpoint URL",
"type": "string"
},
{
"jsonPath": ".status.authenticatedEndpointUrl",
"name": "Authenticated Endpoint URL",
"type": "string"
},
{
"jsonPath": ".status.authToken",
"name": "Auth Token",
"type": "string"
}
],
"name": "v1alpha1",
"schema": {
"openAPIV3Schema": {
"description": "Auto-generated derived type for BlockfrostPortSpec via `CustomResource`",
"properties": {
"spec": {
"properties": {
"authToken": {
"nullable": true,
"type": "string"
},
"blockfrostVersion": {
"nullable": true,
"type": "string"
},
"network": {
"type": "string"
},
"operatorVersion": {
"type": "string"
},
"throughputTier": {
"type": "string"
}
},
"required": [
"network",
"operatorVersion",
"throughputTier"
],
"type": "object"
},
"status": {
"nullable": true,
"properties": {
"authToken": {
"type": "string"
},
"authenticatedEndpointUrl": {
"nullable": true,
"type": "string"
},
"endpointUrl": {
"type": "string"
}
},
"required": [
"authToken",
"endpointUrl"
],
"type": "object"
}
},
"required": [
"spec"
],
"title": "BlockfrostPort",
"type": "object"
}
},
"served": true,
"storage": true,
"subresources": {
"status": {}
}
}
]
}
}
110 changes: 110 additions & 0 deletions bootstrap/rpc/crds/cardanonodeport.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
{
"apiVersion": "apiextensions.k8s.io/v1",
"kind": "CustomResourceDefinition",
"metadata": {
"name": "cardanonodeports.demeter.run"
},
"spec": {
"group": "demeter.run",
"names": {
"categories": [
"demeter-port"
],
"kind": "CardanoNodePort",
"plural": "cardanonodeports",
"shortNames": [
"cnpts"
],
"singular": "cardanonodeport"
},
"scope": "Namespaced",
"versions": [
{
"additionalPrinterColumns": [
{
"jsonPath": ".spec.network",
"name": "Network",
"type": "string"
},
{
"jsonPath": ".spec.version",
"name": "Version",
"type": "string"
},
{
"jsonPath": ".spec.throughputTier",
"name": "Throughput Tier",
"type": "string"
},
{
"jsonPath": ".status.authenticatedEndpointUrl",
"name": "Authenticated Endpoint URL",
"type": "string"
},
{
"jsonPath": ".status.authToken",
"name": "Auth Token",
"type": "string"
}
],
"name": "v1alpha1",
"schema": {
"openAPIV3Schema": {
"description": "Auto-generated derived type for CardanoNodePortSpec via `CustomResource`",
"properties": {
"spec": {
"properties": {
"authToken": {
"nullable": true,
"type": "string"
},
"network": {
"type": "string"
},
"throughputTier": {
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"network",
"throughputTier",
"version"
],
"type": "object"
},
"status": {
"nullable": true,
"properties": {
"authToken": {
"type": "string"
},
"authenticatedEndpointUrl": {
"type": "string"
}
},
"required": [
"authToken",
"authenticatedEndpointUrl"
],
"type": "object"
}
},
"required": [
"spec"
],
"title": "CardanoNodePort",
"type": "object"
}
},
"served": true,
"storage": true,
"subresources": {
"status": {}
}
}
]
}
}
105 changes: 105 additions & 0 deletions bootstrap/rpc/crds/dbsyncport.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
{
"apiVersion": "apiextensions.k8s.io/v1",
"kind": "CustomResourceDefinition",
"metadata": {
"name": "dbsyncports.demeter.run"
},
"spec": {
"group": "demeter.run",
"names": {
"categories": [
"demeter-port"
],
"kind": "DbSyncPort",
"plural": "dbsyncports",
"shortNames": [
"dbsp"
],
"singular": "dbsyncport"
},
"scope": "Namespaced",
"versions": [
{
"additionalPrinterColumns": [
{
"jsonPath": ".spec.network",
"name": "Network",
"type": "string"
},
{
"jsonPath": ".spec.throughputTier",
"name": "Throughput Tier",
"type": "string"
},
{
"jsonPath": ".status.username",
"name": "Username",
"type": "string"
},
{
"jsonPath": ".status.password",
"name": "Password",
"type": "string"
}
],
"name": "v1alpha1",
"schema": {
"openAPIV3Schema": {
"description": "Auto-generated derived type for DbSyncPortSpec via `CustomResource`",
"properties": {
"spec": {
"properties": {
"network": {
"type": "string"
},
"password": {
"nullable": true,
"type": "string"
},
"throughputTier": {
"nullable": true,
"type": "string"
},
"username": {
"nullable": true,
"type": "string"
}
},
"required": [
"network"
],
"type": "object"
},
"status": {
"nullable": true,
"properties": {
"password": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"password",
"username"
],
"type": "object"
}
},
"required": [
"spec"
],
"title": "DbSyncPort",
"type": "object"
}
},
"served": true,
"storage": true,
"subresources": {
"status": {}
}
}
]
}
}
Loading
Loading