summaryrefslogtreecommitdiffstats
path: root/pgaas/pgaas_types.yaml
diff options
context:
space:
mode:
authorHansen, Tony (th1395) <th1395@att.com>2020-06-08 21:01:47 +0000
committerHansen, Tony (th1395) <th1395@att.com>2020-06-08 21:38:02 +0000
commit4c4d9967d0aa0db8306eb8088523da1152f9af68 (patch)
tree7f7799e1ae6383673e326380b41ebd0ba0c01bb4 /pgaas/pgaas_types.yaml
parent96fb7b13783e4f9958923c4b59d52dc9ff781933 (diff)
fix for mvn-phase-lib.sh
Change-Id: I7b3340024bf84206d79c18b10290a1e0f0129304 Signed-off-by: Hansen, Tony (th1395) <th1395@att.com> Issue-ID: DCAEGEN2-2207 Signed-off-by: Hansen, Tony (th1395) <th1395@att.com>
Diffstat (limited to 'pgaas/pgaas_types.yaml')
-rw-r--r--pgaas/pgaas_types.yaml67
1 files changed, 0 insertions, 67 deletions
diff --git a/pgaas/pgaas_types.yaml b/pgaas/pgaas_types.yaml
deleted file mode 100644
index a81d3f6..0000000
--- a/pgaas/pgaas_types.yaml
+++ /dev/null
@@ -1,67 +0,0 @@
-# -*- indent-tabs-mode: nil -*- # vi: set expandtab:
-tosca_definitions_version: cloudify_dsl_1_3
-
-plugins:
- pgaas:
- executor: central_deployment_agent
- package_name: pgaas
- package_version: 1.3.0
-
-node_types:
- dcae.nodes.pgaas.cluster:
- derived_from: cloudify.nodes.Root
- properties:
- writerfqdn:
- description: 'FQDN used for admin/read-write access to the cluster'
- type: string
- use_existing:
- type: boolean
- default: false
- description: 'If set to true, the cluster exists and is being referenced'
- readerfqdn:
- description: 'FQDN used for read-only access to the cluster (default - same as writerfqdn)'
- type: string
- default: ''
- port:
- description: 'Port used for access to the cluster'
- type: string
- default: '5432'
- initialpassword:
- description: 'Password of existing PG instance to take control of'
- type: string
- default: ''
- interfaces:
- cloudify.interfaces.lifecycle:
- create: pgaas.pgaas.pgaas_plugin.add_pgaas_cluster
- delete: pgaas.pgaas.pgaas_plugin.rm_pgaas_cluster
-
- dcae.nodes.pgaas.database:
- derived_from: cloudify.nodes.Root
- properties:
- name:
- type: string
- description: 'Name of database (max 44 alphanumeric)'
- use_existing:
- type: boolean
- default: false
- description: 'If set to true, the database exists and is being referenced'
- writerfqdn:
- type: string
- default: ''
- description: 'Shortcut for connecting to a pgaas.cluster node (with use_existing=true) with a runson_pgaas_cluster relationship'
- interfaces:
- cloudify.interfaces.lifecycle:
- create: pgaas.pgaas.pgaas_plugin.create_database
- delete: pgaas.pgaas.pgaas_plugin.delete_database
-
-relationships:
- dcae.relationships.pgaas_cluster_uses_sshkeypair:
- derived_from: cloudify.relationships.connected_to
- dcae.relationships.database_runson_pgaas_cluster:
- derived_from: cloudify.relationships.contained_in
- dcae.relationships.application_uses_pgaas_database:
- derived_from: cloudify.relationships.connected_to
-
-workflows:
- update_db_passwd :
- mapping : pgaas.pgaas.pgaas_plugin.update_database