summaryrefslogtreecommitdiffstats
path: root/utils
AgeCommit message (Expand)AuthorFilesLines
2018-03-07Sync Integ to MasterMichael Lando23-59/+745
2018-02-28Webseal fixLior Nachmias3-11/+11
2018-02-21OOM Alignment BE,FE,KBNYuli Shlosberg1-707/+0
2018-02-20add https support to simulatoMichael Lando10-83/+119
2018-01-25Fix WS pom clean install and docker creationTal Gitelman1-6/+38
2017-12-31update simulatorMichael Lando3-25/+223
2017-12-10Final commit to master merge fromTal Gitelman3-3/+4
2017-12-10Rename dockers from openecomp to onapIdan Amit1-1/+1
2017-11-13change base docker ver to release verYuli Shlosberg2-2/+2
2017-11-08Update docker-maven-plugin versionIdan Amit1-1/+1
2017-11-05Remove docker login from settings.xmlIdan Amit1-1/+7
2017-10-24Update SDC-Simulator base image to the latestTal Gitelman1-1/+3
2017-09-27add new global typesMichael Lando1-18/+3
2017-09-07readme.md for sdc-simulatorTal Gitelman1-0/+0
2017-09-07readme.md for sdc-simulatorTal Gitelman1-0/+2
2017-09-07readme.md for sdc-simulatorTal Gitelman1-0/+53
2017-08-31[DevOps] - Added local run to docker_runIdan Amit1-1/+27
2017-08-21Webseal Simulator Default files refactoringTal Gitelman5-380/+1
2017-08-21[SDC-154] - sdc-simulator docker taskTal Gitelman17-572/+175
2017-08-17[SDC-154] - sdc-simulator docker taskTal Gitelman15-68/+66
2017-08-17[SDC-154] - sdc-simulator docker taskTal Gitelman3-7/+9
2017-08-16[SDC-154] - sdc-simulator docker taskTal Gitelman32-0/+2421
2017-06-11[SDC-29] rebase continue work to align sourceMichael Lando3-46/+53
2017-06-09[SDC-29] catalog 1707 rebase commit.Michael Lando13-0/+1063
s: valid_node_types: [ tosca.nodes.WebApplication ] requirements: - host: tosca.nodes.Compute type: tosca.relationships.HostedOn tags: icon: /images/mysql.png properties: db_port: type: integer default: 3306 description: The port on which the underlying database service will listen to data. db_name: type: string required: true default: wordpress description: The logical name of the database. db_user: type: string default: pass description: The special user account used for database administration. db_password: type: string default: pass description: The password associated with the user account provided in the ‘db_user’ property. bind_address: type: boolean default: true required: false description: If true,the server accepts TCP/IP connections on all server host IPv4 interfaces. storage_path: type: string default: /mountedStorage constraints: - valid_values: [ "/mountedStorage", "/var/mysql" ] interfaces: Standard: create: scripts/install_mysql.sh start: inputs: VOLUME_HOME: { get_property: [SELF, storage_path] } PORT: { get_property: [SELF, db_port] } DB_NAME: { get_property: [SELF, db_name] } DB_USER: { get_property: [SELF, db_user] } DB_PASSWORD: { get_property: [SELF, db_password] } BIND_ADRESS: { get_property: [SELF, bind_address] } implementation: scripts/start_mysql.sh fastconnect.cloudify.extensions: start_detection: inputs: PORT: { get_property: [SELF, db_port] } implementation: scripts/mysql_start_detection.groovy artifacts: - scripts: scripts type: tosca.artifacts.File capability_types: alien.capabilities.MysqlDatabase: derived_from: tosca.capabilities.Container artifact_types: tosca.artifacts.GroovyScript: description: A groovy script (.groovy file) file_ext: [groovy]