-
Notifications
You must be signed in to change notification settings - Fork 167
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
4d29174
commit c211947
Showing
7 changed files
with
63 additions
and
0 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,6 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
resources: | ||
- ./oci-compliant-registry-v1.yaml | ||
- ./s3.yaml | ||
- ./uri-v1.yaml |
14 changes: 14 additions & 0 deletions
14
manifests/common/connection-types/oci-compliant-registry-v1.yaml
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,14 @@ | ||
kind: ConfigMap | ||
apiVersion: v1 | ||
metadata: | ||
name: oci-compliant-registry-v1 | ||
labels: | ||
opendatahub.io/connection-type: 'true' | ||
opendatahub.io/dashboard: 'true' | ||
annotations: | ||
opendatahub.io/enabled: 'true' | ||
openshift.io/description: 'Connect to an OCI-compliant container registry, enabling integration with containerized applications and services. Use this connection type to pull and manage container images and artifacts that adhere to the Open Container Initiative (OCI) standards, ensuring compatibility with OCI-compliant tools and workflows.' | ||
openshift.io/display-name: OCI compliant registry - v1 | ||
data: | ||
category: '["URI"]' | ||
fields: '[{"type":"uri","name":"URI","envVar":"URI","required":true,"properties":{}}]' |
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,14 @@ | ||
kind: ConfigMap | ||
apiVersion: v1 | ||
metadata: | ||
name: s3 | ||
labels: | ||
opendatahub.io/connection-type: 'true' | ||
opendatahub.io/dashboard: 'true' | ||
annotations: | ||
opendatahub.io/enabled: 'true' | ||
openshift.io/description: 'Connect to storage systems that are compatible with Amazon S3, enabling integration with other S3-compatible services and applications.' | ||
openshift.io/display-name: S3 compatible object storage - v1 | ||
data: | ||
category: '["Object storage"]' | ||
fields: '[{"type":"short-text","name":"Access key","envVar":"AWS_ACCESS_KEY_ID","properties":{},"required":true},{"type":"hidden","name":"Secret key","envVar":"AWS_SECRET_ACCESS_KEY","required":true,"properties":{}},{"type":"short-text","name":"Endpoint","envVar":"AWS_S3_ENDPOINT","required":true,"properties":{}},{"type":"short-text","name":"Region","envVar":"AWS_DEFAULT_REGION","required":false,"properties":{}},{"type":"short-text","name":"Bucket","envVar":"AWS_S3_BUCKET","required":false,"properties":{}},{"type":"short-text","name":"Path","envVar":"AWS_S3_PATH","properties":{}}]' |
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,14 @@ | ||
kind: ConfigMap | ||
apiVersion: v1 | ||
metadata: | ||
name: uri-v1 | ||
labels: | ||
opendatahub.io/connection-type: 'true' | ||
opendatahub.io/dashboard: 'true' | ||
annotations: | ||
opendatahub.io/enabled: 'true' | ||
openshift.io/description: Establish connections by using Uniform Resource Identifiers (URIs) to access various data sources. | ||
openshift.io/display-name: URI - v1 | ||
data: | ||
category: '["URI"]' | ||
fields: '[{"type":"uri","name":"URI","envVar":"URI","required":true,"properties":{}}]' |
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 |
---|---|---|
|
@@ -3,3 +3,4 @@ kind: Kustomization | |
resources: | ||
- ./crd | ||
- ./apps | ||
- ./connection-types |