forked from redhat-developer/odo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Install script for operators on Kubernetes + Activate tests with oper…
…ators on Kubernetes cluster (redhat-developer#5861)
- Loading branch information
Showing
5 changed files
with
43 additions
and
12 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
35 changes: 35 additions & 0 deletions
35
scripts/ansible/kubernetes-cluster/operators-kubernetes.yml
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,35 @@ | ||
--- | ||
- name: Install Operators on Kubernetes Cluster | ||
hosts: localhost | ||
collections: | ||
- community.kubernetes | ||
tasks: | ||
|
||
- name: Create a Subscription for Service Binding Operator | ||
k8s: | ||
state: present | ||
definition: | ||
apiVersion: operators.coreos.com/v1alpha1 | ||
kind: Subscription | ||
metadata: | ||
name: my-service-binding-operator | ||
namespace: operators | ||
spec: | ||
channel: stable | ||
name: service-binding-operator | ||
source: operatorhubio-catalog | ||
sourceNamespace: olm | ||
- name: Create a Subscription for EDB Postgresql Operator | ||
k8s: | ||
state: present | ||
definition: | ||
apiVersion: operators.coreos.com/v1alpha1 | ||
kind: Subscription | ||
metadata: | ||
name: my-cloud-native-postgresql | ||
namespace: operators | ||
spec: | ||
channel: stable | ||
name: cloud-native-postgresql | ||
source: operatorhubio-catalog | ||
sourceNamespace: olm |
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
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