diff --git a/Applications/Crate/package/Classes/DockerCrate.yaml b/Applications/Crate/package/Classes/DockerCrate.yaml index 82340df..ed72710 100644 --- a/Applications/Crate/package/Classes/DockerCrate.yaml +++ b/Applications/Crate/package/Classes/DockerCrate.yaml @@ -11,12 +11,13 @@ # under the License. Namespaces: - =: io.murano.apps.docker + =: com.example.docker std: io.murano + interfaces: com.mirantis.docker Name: DockerCrate -Extends: DockerApplication +Extends: interfaces:DockerApplication Properties: name: diff --git a/Applications/Crate/package/UI/ui.yaml b/Applications/Crate/package/UI/ui.yaml index 74d0fe4..6667134 100644 --- a/Applications/Crate/package/UI/ui.yaml +++ b/Applications/Crate/package/UI/ui.yaml @@ -14,7 +14,7 @@ Version: 2 Application: ?: - type: io.murano.apps.docker.DockerCrate + type: com.example.docker.DockerCrate name: $.appConfiguration.name host: $.appConfiguration.host publish: $.appConfiguration.publish @@ -37,8 +37,8 @@ Forms: underline are allowed - name: host type: - - io.murano.apps.docker.kubernetes.KubernetesPod - - io.murano.apps.docker.DockerStandaloneHost + - com.mirantis.docker.kubernetes.KubernetesPod + - com.example.docker.DockerStandaloneHost label: Container Host description: >- Select an instance of Docker contaniner hosting provider to run the app diff --git a/Applications/Crate/package/manifest.yaml b/Applications/Crate/package/manifest.yaml index 66a2306..3fa520d 100644 --- a/Applications/Crate/package/manifest.yaml +++ b/Applications/Crate/package/manifest.yaml @@ -12,16 +12,16 @@ Format: 1.3 Type: Application -FullName: io.murano.apps.docker.DockerCrate +FullName: com.example.docker.DockerCrate Name: Docker Crate Description: | Crate is an Elastic SQL Data Store. Distributed by design, Crate makes centralized database servers obsolete. Realtime non-blocking SQL engine with full blown search. Highly available, massively scalable yet simple to use. Author: 'Mirantis, Inc' Tags: [docker, application, crate] Classes: - io.murano.apps.docker.DockerCrate: DockerCrate.yaml + com.example.docker.DockerCrate: DockerCrate.yaml Require: - io.murano.apps.docker.DockerStandaloneHost: - io.murano.apps.docker.kubernetes.KubernetesPod: - io.murano.apps.docker.Interfaces: + com.example.docker.DockerStandaloneHost: + com.mirantis.docker.kubernetes.KubernetesPod: + com.mirantis.docker.Interfaces: diff --git a/Applications/DockerApp/package/Classes/DockerApp.yaml b/Applications/DockerApp/package/Classes/DockerApp.yaml index 5299fe6..c174738 100644 --- a/Applications/DockerApp/package/Classes/DockerApp.yaml +++ b/Applications/DockerApp/package/Classes/DockerApp.yaml @@ -11,12 +11,13 @@ # under the License. Namespaces: - =: io.murano.apps.docker + =: com.example.docker std: io.murano + interfaces: com.mirantis.docker Name: DockerApp -Extends: DockerApplication +Extends: interfaces:DockerApplication Properties: name: diff --git a/Applications/DockerApp/package/UI/ui.yaml b/Applications/DockerApp/package/UI/ui.yaml index 357c750..8ebce8e 100644 --- a/Applications/DockerApp/package/UI/ui.yaml +++ b/Applications/DockerApp/package/UI/ui.yaml @@ -14,7 +14,7 @@ Version: 2 Application: ?: - type: io.murano.apps.docker.DockerApp + type: com.example.docker.DockerApp name: $.appConfiguration.name host: $.appConfiguration.host publish: $.appConfiguration.publish @@ -39,8 +39,8 @@ Forms: underline are allowed - name: host type: - - io.murano.apps.docker.kubernetes.KubernetesPod - - io.murano.apps.docker.DockerStandaloneHost + - com.mirantis.docker.kubernetes.KubernetesPod + - com.example.docker.DockerStandaloneHost label: Container Host description: >- Select an instance of Docker container hosting provider to run the app diff --git a/Applications/DockerApp/package/manifest.yaml b/Applications/DockerApp/package/manifest.yaml index 0fa19ee..8c70df3 100644 --- a/Applications/DockerApp/package/manifest.yaml +++ b/Applications/DockerApp/package/manifest.yaml @@ -12,7 +12,7 @@ Format: 1.3 Type: Application -FullName: io.murano.apps.docker.DockerApp +FullName: com.example.docker.DockerApp Name: Docker Container Description: | The application provides ability to create Docker container to deploy one of @@ -22,8 +22,8 @@ Description: | Author: 'Mirantis, Inc' Tags: [docker, application] Classes: - io.murano.apps.docker.DockerApp: DockerApp.yaml + com.example.docker.DockerApp: DockerApp.yaml Require: - io.murano.apps.docker.DockerStandaloneHost: - io.murano.apps.docker.kubernetes.KubernetesPod: - io.murano.apps.docker.Interfaces: + com.example.docker.DockerStandaloneHost: + com.mirantis.docker.kubernetes.KubernetesPod: + com.mirantis.docker.Interfaces: diff --git a/Applications/Elasticsearch/package/Classes/DockerElasticsearch.yaml b/Applications/Elasticsearch/package/Classes/DockerElasticsearch.yaml index 14ac811..47fc40f 100644 --- a/Applications/Elasticsearch/package/Classes/DockerElasticsearch.yaml +++ b/Applications/Elasticsearch/package/Classes/DockerElasticsearch.yaml @@ -11,12 +11,13 @@ # under the License. Namespaces: - =: io.murano.apps.docker + =: com.example.docker std: io.murano + interfaces: com.mirantis.docker Name: DockerElasticsearch -Extends: DockerApplication +Extends: interfaces:DockerApplication Properties: name: diff --git a/Applications/Elasticsearch/package/UI/ui.yaml b/Applications/Elasticsearch/package/UI/ui.yaml index 07c5ec9..6bc41c0 100644 --- a/Applications/Elasticsearch/package/UI/ui.yaml +++ b/Applications/Elasticsearch/package/UI/ui.yaml @@ -14,7 +14,7 @@ Version: 2 Application: ?: - type: io.murano.apps.docker.DockerElasticsearch + type: com.example.docker.DockerElasticsearch name: $.appConfiguration.name username: $.appConfiguration.username password: $.appConfiguration.password @@ -50,8 +50,8 @@ Forms: User password that will be configured for Elasticsearch access - name: host type: - - io.murano.apps.docker.kubernetes.KubernetesPod - - io.murano.apps.docker.DockerStandaloneHost + - com.mirantis.docker.kubernetes.KubernetesPod + - com.example.docker.DockerStandaloneHost label: Container Host description: >- Select an instance of Docker container hosting provider to run the app diff --git a/Applications/Elasticsearch/package/manifest.yaml b/Applications/Elasticsearch/package/manifest.yaml index d78e5a8..70b9e6d 100644 --- a/Applications/Elasticsearch/package/manifest.yaml +++ b/Applications/Elasticsearch/package/manifest.yaml @@ -12,15 +12,15 @@ Format: 1.3 Type: Application -FullName: io.murano.apps.docker.DockerElasticsearch +FullName: com.example.docker.DockerElasticsearch Name: Docker Elasticsearch Description: | Elasticsearch is a search server based on Lucene. It provides a distributed, multitenant-capable full-text search engine with a RESTful web interface and schema-free JSON documents. Author: 'Mirantis, Inc' Tags: [docker, application, Elasticsearch] Classes: - io.murano.apps.docker.DockerElasticsearch: DockerElasticsearch.yaml + com.example.docker.DockerElasticsearch: DockerElasticsearch.yaml Require: - io.murano.apps.docker.DockerStandaloneHost: - io.murano.apps.docker.kubernetes.KubernetesPod: - io.murano.apps.docker.Interfaces: + com.example.docker.DockerStandaloneHost: + com.mirantis.docker.kubernetes.KubernetesPod: + com.mirantis.docker.Interfaces: diff --git a/Applications/GlassFish/package/Classes/DockerGlassFish.yaml b/Applications/GlassFish/package/Classes/DockerGlassFish.yaml index 115fdb4..59b39ec 100644 --- a/Applications/GlassFish/package/Classes/DockerGlassFish.yaml +++ b/Applications/GlassFish/package/Classes/DockerGlassFish.yaml @@ -11,12 +11,13 @@ # under the License. Namespaces: - =: io.murano.apps.docker + =: com.example.docker std: io.murano + interfaces: com.mirantis.docker Name: DockerGlassFish -Extends: DockerApplication +Extends: interfaces:DockerApplication Properties: name: diff --git a/Applications/GlassFish/package/UI/ui.yaml b/Applications/GlassFish/package/UI/ui.yaml index 2a11113..b437e5a 100644 --- a/Applications/GlassFish/package/UI/ui.yaml +++ b/Applications/GlassFish/package/UI/ui.yaml @@ -14,7 +14,7 @@ Version: 2 Application: ?: - type: io.murano.apps.docker.DockerGlassFish + type: com.example.docker.DockerGlassFish name: $.appConfiguration.name host: $.appConfiguration.host publish: $.appConfiguration.publish @@ -43,8 +43,8 @@ Forms: description: Password for admin user in GlassFish - name: host type: - - io.murano.apps.docker.kubernetes.KubernetesPod - - io.murano.apps.docker.DockerStandaloneHost + - com.mirantis.docker.kubernetes.KubernetesPod + - com.example.docker.DockerStandaloneHost label: Container Host description: >- Select an instance of Docker contaniner hosting provider to run the app diff --git a/Applications/GlassFish/package/manifest.yaml b/Applications/GlassFish/package/manifest.yaml index b5f9709..c0a14d1 100644 --- a/Applications/GlassFish/package/manifest.yaml +++ b/Applications/GlassFish/package/manifest.yaml @@ -12,15 +12,15 @@ Format: 1.3 Type: Application -FullName: io.murano.apps.docker.DockerGlassFish +FullName: com.example.docker.DockerGlassFish Name: Docker GlassFish Description: | Oracle GlassFish Server is the world's first implementation of the Java Platform, Enterprise Edition (Java EE) 6 specification. Built using the GlassFish Server Open Source Edition, Oracle GlassFish Server delivers a flexible, lightweight, and production-ready Java EE 6 application server. Author: 'Mirantis, Inc' Tags: [docker, application, GlassFish] Classes: - io.murano.apps.docker.DockerGlassFish: DockerGlassFish.yaml + com.example.docker.DockerGlassFish: DockerGlassFish.yaml Require: - io.murano.apps.docker.DockerStandaloneHost: - io.murano.apps.docker.kubernetes.KubernetesPod: - io.murano.apps.docker.Interfaces: + com.example.docker.DockerStandaloneHost: + com.mirantis.docker.kubernetes.KubernetesPod: + com.mirantis.docker.Interfaces: diff --git a/Applications/Grafana/package/Classes/DockerGrafana.yaml b/Applications/Grafana/package/Classes/DockerGrafana.yaml index 5ee6bb9..914ad62 100644 --- a/Applications/Grafana/package/Classes/DockerGrafana.yaml +++ b/Applications/Grafana/package/Classes/DockerGrafana.yaml @@ -11,12 +11,13 @@ # under the License. Namespaces: - =: io.murano.apps.docker + =: com.example.docker std: io.murano + interfaces: com.mirantis.docker Name: DockerGrafana -Extends: DockerApplication +Extends: interfaces:DockerApplication Properties: diff --git a/Applications/Grafana/package/UI/ui.yaml b/Applications/Grafana/package/UI/ui.yaml index a4c9946..5184bc7 100644 --- a/Applications/Grafana/package/UI/ui.yaml +++ b/Applications/Grafana/package/UI/ui.yaml @@ -14,7 +14,7 @@ Version: 2 Application: ?: - type: io.murano.apps.docker.DockerGrafana + type: com.example.docker.DockerGrafana name: $.appConfiguration.name host: $.appConfiguration.host publish: $.appConfiguration.publish @@ -42,8 +42,8 @@ Forms: underline are allowed - name: host type: - - io.murano.apps.docker.kubernetes.KubernetesPod - - io.murano.apps.docker.DockerStandaloneHost + - com.mirantis.docker.kubernetes.KubernetesPod + - com.example.docker.DockerStandaloneHost label: Container Host description: >- Select an instance of Docker contaniner hosting provider to run the app @@ -58,7 +58,7 @@ Forms: - grafanaConfig: fields: - name: influxDB - type: io.murano.apps.docker.DockerInfluxDB + type: com.example.docker.DockerInfluxDB label: InfluxDB instance required: true description: >- diff --git a/Applications/Grafana/package/manifest.yaml b/Applications/Grafana/package/manifest.yaml index bea854d..f9482a3 100644 --- a/Applications/Grafana/package/manifest.yaml +++ b/Applications/Grafana/package/manifest.yaml @@ -12,16 +12,16 @@ Format: 1.3 Type: Application -FullName: io.murano.apps.docker.DockerGrafana +FullName: com.example.docker.DockerGrafana Name: Docker Grafana Description: | Grafana is a frontend for Graphite, InfluxDB and OpenTSDB with powerfull visualization features for time series data. You will need either a Graphite, InfluxDB or OpenTSDB server for Grafana to be of any use. Author: 'Mirantis, Inc' Tags: [docker, application, Grafana] Classes: - io.murano.apps.docker.DockerGrafana: DockerGrafana.yaml + com.example.docker.DockerGrafana: DockerGrafana.yaml Require: - io.murano.apps.docker.DockerStandaloneHost: - io.murano.apps.docker.kubernetes.KubernetesPod: - io.murano.apps.docker.DockerInfluxDB: - io.murano.apps.docker.Interfaces: + com.example.docker.DockerStandaloneHost: + com.mirantis.docker.kubernetes.KubernetesPod: + com.example.docker.DockerInfluxDB: + com.mirantis.docker.Interfaces: diff --git a/Applications/GuestBook/package/Classes/GuestBook.yaml b/Applications/GuestBook/package/Classes/GuestBook.yaml index e52f1cc..ccadc80 100644 --- a/Applications/GuestBook/package/Classes/GuestBook.yaml +++ b/Applications/GuestBook/package/Classes/GuestBook.yaml @@ -11,12 +11,13 @@ # under the License. Namespaces: - =: io.murano.apps.docker + =: com.example.docker std: io.murano + interfaces: com.mirantis.docker Name: DockerGuestBook -Extends: DockerApplication +Extends: interfaces:DockerApplication Properties: name: @@ -30,7 +31,7 @@ Properties: Contract: $.class(DockerRedis).notNull() redisSlaveHost: - Contract: $.class(DockerContainerHost).notNull() + Contract: $.class(interfaces:DockerContainerHost).notNull() redisSlave: Contract: $.class(DockerRedisSlave) diff --git a/Applications/GuestBook/package/Classes/RedisSlave.yaml b/Applications/GuestBook/package/Classes/RedisSlave.yaml index 8a87b79..344ddf4 100644 --- a/Applications/GuestBook/package/Classes/RedisSlave.yaml +++ b/Applications/GuestBook/package/Classes/RedisSlave.yaml @@ -11,12 +11,13 @@ # under the License. Namespaces: - =: io.murano.apps.docker + =: com.example.docker std: io.murano + interfaces: com.mirantis.docker Name: DockerRedisSlave -Extends: DockerApplication +Extends: interfaces:DockerApplication Properties: name: diff --git a/Applications/GuestBook/package/UI/ui.yaml b/Applications/GuestBook/package/UI/ui.yaml index a16dc08..7a4f5cf 100644 --- a/Applications/GuestBook/package/UI/ui.yaml +++ b/Applications/GuestBook/package/UI/ui.yaml @@ -14,7 +14,7 @@ Version: 2 Templates: guestBookHost: ?: - type: io.murano.apps.docker.kubernetes.KubernetesPod + type: com.mirantis.docker.kubernetes.KubernetesPod name: frontend labels: 'name=frontend,app=frontend,uses=redis-slave-or-redis-master' kubernetesCluster: $.appConfiguration.kubernetesCluster @@ -22,7 +22,7 @@ Templates: redisSlaveHost: ?: - type: io.murano.apps.docker.kubernetes.KubernetesPod + type: com.mirantis.docker.kubernetes.KubernetesPod name: 'redis-slave' labels: 'name=redis-slave,app=redis,uses=redis-master' kubernetesCluster: $.appConfiguration.kubernetesCluster @@ -30,11 +30,11 @@ Templates: redisMaster: ?: - type: io.murano.apps.docker.DockerRedis + type: com.example.docker.DockerRedis name: RedisMaster host: ?: - type: io.murano.apps.docker.kubernetes.KubernetesPod + type: com.mirantis.docker.kubernetes.KubernetesPod name: 'redis-master' labels: 'name=redis-master,app=redis' kubernetesCluster: $.appConfiguration.kubernetesCluster @@ -44,7 +44,7 @@ Templates: Application: ?: - type: io.murano.apps.docker.DockerGuestBook + type: com.example.docker.DockerGuestBook name: $.appConfiguration.name host: $guestBookHost redisMaster: $redisMaster @@ -69,7 +69,7 @@ Forms: Enter a desired name for the application. Just A-Z, a-z, 0-9, dash and underline are allowed - name: kubernetesCluster - type: io.murano.apps.docker.kubernetes.KubernetesCluster + type: com.mirantis.docker.kubernetes.KubernetesCluster label: Kubernetes cluster required: true description: >- diff --git a/Applications/GuestBook/package/manifest.yaml b/Applications/GuestBook/package/manifest.yaml index 317e5b9..1d70d96 100644 --- a/Applications/GuestBook/package/manifest.yaml +++ b/Applications/GuestBook/package/manifest.yaml @@ -12,7 +12,7 @@ Format: 1.3 Type: Application -FullName: io.murano.apps.docker.GuestBook +FullName: com.example.docker.GuestBook Name: Docker GuestBook Description: | Simple demo application using Kubernetes Cluster for deployment @@ -20,10 +20,10 @@ Author: 'Mirantis, Inc' Tags: [Docker, Kubernetes, guestbook] Classes: - io.murano.apps.docker.DockerRedisSlave: RedisSlave.yaml - io.murano.apps.docker.DockerGuestBook: GuestBook.yaml + com.example.docker.DockerRedisSlave: RedisSlave.yaml + com.example.docker.DockerGuestBook: GuestBook.yaml Require: - io.murano.apps.docker.DockerRedis: - io.murano.apps.docker.kubernetes.KubernetesPod: - io.murano.apps.docker.kubernetes.KubernetesCluster: - io.murano.apps.docker.Interfaces: + com.example.docker.DockerRedis: + com.mirantis.docker.kubernetes.KubernetesPod: + com.mirantis.docker.kubernetes.KubernetesCluster: + com.mirantis.docker.Interfaces: diff --git a/Applications/HTTPdServer/package/Classes/DockerHTTPd.yaml b/Applications/HTTPdServer/package/Classes/DockerHTTPd.yaml index 270477e..3965227 100644 --- a/Applications/HTTPdServer/package/Classes/DockerHTTPd.yaml +++ b/Applications/HTTPdServer/package/Classes/DockerHTTPd.yaml @@ -11,12 +11,13 @@ # under the License. Namespaces: - =: io.murano.apps.docker + =: com.example.docker std: io.murano + interfaces: com.mirantis.docker Name: DockerHTTPd -Extends: DockerApplication +Extends: interfaces:DockerApplication Properties: name: diff --git a/Applications/HTTPdServer/package/UI/ui.yaml b/Applications/HTTPdServer/package/UI/ui.yaml index b6e3aff..b58cd8b 100644 --- a/Applications/HTTPdServer/package/UI/ui.yaml +++ b/Applications/HTTPdServer/package/UI/ui.yaml @@ -14,7 +14,7 @@ Version: 2 Application: ?: - type: io.murano.apps.docker.DockerHTTPd + type: com.example.docker.DockerHTTPd name: $.appConfiguration.name host: $.appConfiguration.host publish: $.appConfiguration.publish @@ -37,8 +37,8 @@ Forms: underline are allowed - name: host type: - - io.murano.apps.docker.kubernetes.KubernetesPod - - io.murano.apps.docker.DockerStandaloneHost + - com.mirantis.docker.kubernetes.KubernetesPod + - com.example.docker.DockerStandaloneHost label: Container Host description: >- Select an instance of Docker contaniner hosting provider to run the app diff --git a/Applications/HTTPdServer/package/manifest.yaml b/Applications/HTTPdServer/package/manifest.yaml index 5eac62f..4ee6f73 100644 --- a/Applications/HTTPdServer/package/manifest.yaml +++ b/Applications/HTTPdServer/package/manifest.yaml @@ -12,15 +12,15 @@ Format: 1.3 Type: Application -FullName: io.murano.apps.docker.DockerHTTPd +FullName: com.example.docker.DockerHTTPd Name: Docker HTTPd Description: | The Apache HTTP Server, colloquially called Apache, is a Web server application notable for playing a key role in the initial growth of the World Wide Web. Author: 'Mirantis, Inc' Tags: [docker, application, httpd] Classes: - io.murano.apps.docker.DockerHTTPd: DockerHTTPd.yaml + com.example.docker.DockerHTTPd: DockerHTTPd.yaml Require: - io.murano.apps.docker.DockerStandaloneHost: - io.murano.apps.docker.kubernetes.KubernetesPod: - io.murano.apps.docker.Interfaces: + com.example.docker.DockerStandaloneHost: + com.mirantis.docker.kubernetes.KubernetesPod: + com.mirantis.docker.Interfaces: diff --git a/Applications/HTTPdSite/package/Classes/DockerHTTPdSite.yaml b/Applications/HTTPdSite/package/Classes/DockerHTTPdSite.yaml index 5f12549..34b5ab9 100644 --- a/Applications/HTTPdSite/package/Classes/DockerHTTPdSite.yaml +++ b/Applications/HTTPdSite/package/Classes/DockerHTTPdSite.yaml @@ -11,12 +11,13 @@ # under the License. Namespaces: - =: io.murano.apps.docker + =: com.example.docker std: io.murano + interfaces: com.mirantis.docker Name: DockerHTTPdSite -Extends: DockerApplication +Extends: interfaces:DockerApplication Properties: name: diff --git a/Applications/HTTPdSite/package/UI/ui.yaml b/Applications/HTTPdSite/package/UI/ui.yaml index 470c06c..ecf8b7e 100644 --- a/Applications/HTTPdSite/package/UI/ui.yaml +++ b/Applications/HTTPdSite/package/UI/ui.yaml @@ -14,7 +14,7 @@ Version: 2 Application: ?: - type: io.murano.apps.docker.DockerHTTPdSite + type: com.example.docker.DockerHTTPdSite name: $.appConfiguration.name host: $.appConfiguration.host publish: $.appConfiguration.publish @@ -43,8 +43,8 @@ Forms: description: Enter an URL to git repository with site content - name: host type: - - io.murano.apps.docker.kubernetes.KubernetesPod - - io.murano.apps.docker.DockerStandaloneHost + - com.mirantis.docker.kubernetes.KubernetesPod + - com.example.docker.DockerStandaloneHost label: Container Host description: >- Select an instance of Docker contaniner hosting provider to run the app diff --git a/Applications/HTTPdSite/package/manifest.yaml b/Applications/HTTPdSite/package/manifest.yaml index 1e2efa6..a484dcd 100644 --- a/Applications/HTTPdSite/package/manifest.yaml +++ b/Applications/HTTPdSite/package/manifest.yaml @@ -12,15 +12,15 @@ Format: 1.3 Type: Application -FullName: io.murano.apps.docker.DockerHTTPdSite +FullName: com.example.docker.DockerHTTPdSite Name: Docker HTTPd Site Description: | Deploys a site from a git URL using Apache HTTPd as the web server. Author: 'Mirantis, Inc' Tags: [docker, application, httpd] Classes: - io.murano.apps.docker.DockerHTTPdSite: DockerHTTPdSite.yaml + com.example.docker.DockerHTTPdSite: DockerHTTPdSite.yaml Require: - io.murano.apps.docker.DockerStandaloneHost: - io.murano.apps.docker.kubernetes.KubernetesPod: - io.murano.apps.docker.Interfaces: + com.example.docker.DockerStandaloneHost: + com.mirantis.docker.kubernetes.KubernetesPod: + com.mirantis.docker.Interfaces: diff --git a/Applications/InfluxDB/package/Classes/DockerInfluxDB.yaml b/Applications/InfluxDB/package/Classes/DockerInfluxDB.yaml index 7c25d3f..b6b9a98 100644 --- a/Applications/InfluxDB/package/Classes/DockerInfluxDB.yaml +++ b/Applications/InfluxDB/package/Classes/DockerInfluxDB.yaml @@ -11,12 +11,13 @@ # under the License. Namespaces: - =: io.murano.apps.docker + =: com.example.docker std: io.murano + interfaces: com.mirantis.docker Name: DockerInfluxDB -Extends: DockerApplication +Extends: interfaces:DockerApplication Properties: name: diff --git a/Applications/InfluxDB/package/UI/ui.yaml b/Applications/InfluxDB/package/UI/ui.yaml index 47904dd..26ff4f9 100644 --- a/Applications/InfluxDB/package/UI/ui.yaml +++ b/Applications/InfluxDB/package/UI/ui.yaml @@ -14,7 +14,7 @@ Version: 2 Application: ?: - type: io.murano.apps.docker.DockerInfluxDB + type: com.example.docker.DockerInfluxDB name: $.appConfiguration.name host: $.appConfiguration.host publish: $.appConfiguration.publish @@ -38,8 +38,8 @@ Forms: underline are allowed - name: host type: - - io.murano.apps.docker.kubernetes.KubernetesPod - - io.murano.apps.docker.DockerStandaloneHost + - com.mirantis.docker.kubernetes.KubernetesPod + - com.example.docker.DockerStandaloneHost label: Container Host description: >- Select an instance of Docker contaniner hosting provider to run the app diff --git a/Applications/InfluxDB/package/manifest.yaml b/Applications/InfluxDB/package/manifest.yaml index 7a7609a..912ec25 100644 --- a/Applications/InfluxDB/package/manifest.yaml +++ b/Applications/InfluxDB/package/manifest.yaml @@ -12,15 +12,15 @@ Format: 1.3 Type: Application -FullName: io.murano.apps.docker.DockerInfluxDB +FullName: com.example.docker.DockerInfluxDB Name: Docker InfluxDB Description: | InfluxDB is a time series, events, and metrics database. It’s written in Go and has no external dependencies. That means once you install it there’s nothing else to manage (like Redis, HBase, or whatever). Author: 'Mirantis, Inc' Tags: [docker, application, InfluxDB] Classes: - io.murano.apps.docker.DockerInfluxDB: DockerInfluxDB.yaml + com.example.docker.DockerInfluxDB: DockerInfluxDB.yaml Require: - io.murano.apps.docker.DockerStandaloneHost: - io.murano.apps.docker.kubernetes.KubernetesPod: - io.murano.apps.docker.Interfaces: + com.example.docker.DockerStandaloneHost: + com.mirantis.docker.kubernetes.KubernetesPod: + com.mirantis.docker.Interfaces: diff --git a/Applications/JBoss/package/Classes/DockerJBoss.yaml b/Applications/JBoss/package/Classes/DockerJBoss.yaml index 7248315..1faf49f 100644 --- a/Applications/JBoss/package/Classes/DockerJBoss.yaml +++ b/Applications/JBoss/package/Classes/DockerJBoss.yaml @@ -11,12 +11,13 @@ # under the License. Namespaces: - =: io.murano.apps.docker + =: com.example.docker std: io.murano + interfaces: com.mirantis.docker Name: DockerJBoss -Extends: DockerApplication +Extends: interfaces:DockerApplication Properties: name: diff --git a/Applications/JBoss/package/UI/ui.yaml b/Applications/JBoss/package/UI/ui.yaml index 76da58d..4bf9ff9 100644 --- a/Applications/JBoss/package/UI/ui.yaml +++ b/Applications/JBoss/package/UI/ui.yaml @@ -14,7 +14,7 @@ Version: 2 Application: ?: - type: io.murano.apps.docker.DockerJBoss + type: com.example.docker.DockerJBoss name: $.appConfiguration.name host: $.appConfiguration.host publish: $.appConfiguration.publish @@ -42,8 +42,8 @@ Forms: description: Password for admin user in JBoss - name: host type: - - io.murano.apps.docker.kubernetes.KubernetesPod - - io.murano.apps.docker.DockerStandaloneHost + - com.mirantis.docker.kubernetes.KubernetesPod + - com.example.docker.DockerStandaloneHost label: Container Host description: >- Select an instance of Docker container hosting provider to run the app diff --git a/Applications/JBoss/package/manifest.yaml b/Applications/JBoss/package/manifest.yaml index 546cd93..d7e8439 100644 --- a/Applications/JBoss/package/manifest.yaml +++ b/Applications/JBoss/package/manifest.yaml @@ -12,15 +12,15 @@ Format: 1.3 Type: Application -FullName: io.murano.apps.docker.DockerJBoss +FullName: com.example.docker.DockerJBoss Name: Docker JBoss Description: | JBoss applications server is a J2EE platform for developing and deploying enterprise Java applications, Web applications and services, and portals. Author: 'Mirantis, Inc' Tags: [docker, application, JBoss] Classes: - io.murano.apps.docker.DockerJBoss: DockerJBoss.yaml + com.example.docker.DockerJBoss: DockerJBoss.yaml Require: - io.murano.apps.docker.DockerStandaloneHost: - io.murano.apps.docker.kubernetes.KubernetesPod: - io.murano.apps.docker.Interfaces: + com.example.docker.DockerStandaloneHost: + com.mirantis.docker.kubernetes.KubernetesPod: + com.mirantis.docker.Interfaces: diff --git a/Applications/Jenkins/package/Classes/DockerJenkins.yaml b/Applications/Jenkins/package/Classes/DockerJenkins.yaml index 702ca0e..a6e2ed1 100644 --- a/Applications/Jenkins/package/Classes/DockerJenkins.yaml +++ b/Applications/Jenkins/package/Classes/DockerJenkins.yaml @@ -11,12 +11,13 @@ # under the License. Namespaces: - =: io.murano.apps.docker + =: com.example.docker std: io.murano + interfaces: com.mirantis.docker Name: DockerJenkins -Extends: DockerApplication +Extends: interfaces:DockerApplication Properties: name: diff --git a/Applications/Jenkins/package/UI/ui.yaml b/Applications/Jenkins/package/UI/ui.yaml index 329cccd..0ac05a4 100644 --- a/Applications/Jenkins/package/UI/ui.yaml +++ b/Applications/Jenkins/package/UI/ui.yaml @@ -14,7 +14,7 @@ Version: 2 Application: ?: - type: io.murano.apps.docker.DockerJenkins + type: com.example.docker.DockerJenkins name: $.appConfiguration.name host: $.appConfiguration.host publish: $.appConfiguration.publish @@ -37,8 +37,8 @@ Forms: underline are allowed - name: host type: - - io.murano.apps.docker.kubernetes.KubernetesPod - - io.murano.apps.docker.DockerStandaloneHost + - com.mirantis.docker.kubernetes.KubernetesPod + - com.example.docker.DockerStandaloneHost label: Container Host description: >- Select an instance of Docker contaniner hosting provider to run the app diff --git a/Applications/Jenkins/package/manifest.yaml b/Applications/Jenkins/package/manifest.yaml index 33a7c80..6c9a478 100644 --- a/Applications/Jenkins/package/manifest.yaml +++ b/Applications/Jenkins/package/manifest.yaml @@ -12,15 +12,15 @@ Format: 1.3 Type: Application -FullName: io.murano.apps.docker.DockerJenkins +FullName: com.example.apps.docker.DockerJenkins Name: Docker Jenkins Description: | Jenkins is an award-winning application that monitors executions of repeated jobs, such as building a software project or jobs run by cron. Author: 'Mirantis, Inc' Tags: [docker, application, Jenkins] Classes: - io.murano.apps.docker.DockerJenkins: DockerJenkins.yaml + com.example.docker.DockerJenkins: DockerJenkins.yaml Require: - io.murano.apps.docker.DockerStandaloneHost: - io.murano.apps.docker.kubernetes.KubernetesPod: - io.murano.apps.docker.Interfaces: + com.example.docker.DockerStandaloneHost: + com.mirantis.docker.kubernetes.KubernetesPod: + com.mirantis.docker.Interfaces: diff --git a/Applications/MariaDB/package/Classes/DockerMariaDB.yaml b/Applications/MariaDB/package/Classes/DockerMariaDB.yaml index af30652..803bfb7 100644 --- a/Applications/MariaDB/package/Classes/DockerMariaDB.yaml +++ b/Applications/MariaDB/package/Classes/DockerMariaDB.yaml @@ -11,12 +11,13 @@ # under the License. Namespaces: - =: io.murano.apps.docker + =: com.example.docker std: io.murano + interfaces: com.mirantis.docker Name: DockerMariaDB -Extends: DockerApplication +Extends: interfaces:DockerApplication Properties: name: diff --git a/Applications/MariaDB/package/UI/ui.yaml b/Applications/MariaDB/package/UI/ui.yaml index 0159f3f..24230d7 100644 --- a/Applications/MariaDB/package/UI/ui.yaml +++ b/Applications/MariaDB/package/UI/ui.yaml @@ -14,7 +14,7 @@ Version: 2 Application: ?: - type: io.murano.apps.docker.DockerMariaDB + type: com.example.docker.DockerMariaDB name: $.appConfiguration.name host: $.appConfiguration.host publish: $.appConfiguration.publish @@ -38,8 +38,8 @@ Forms: underline are allowed - name: host type: - - io.murano.apps.docker.kubernetes.KubernetesPod - - io.murano.apps.docker.DockerStandaloneHost + - com.mirantis.docker.kubernetes.KubernetesPod + - com.example.docker.DockerStandaloneHost label: Container Host description: >- Select an instance of Docker contaniner hosting provider to run the app diff --git a/Applications/MariaDB/package/manifest.yaml b/Applications/MariaDB/package/manifest.yaml index 943ef8b..946db84 100644 --- a/Applications/MariaDB/package/manifest.yaml +++ b/Applications/MariaDB/package/manifest.yaml @@ -12,7 +12,7 @@ Format: 1.3 Type: Application -FullName: io.murano.apps.docker.DockerMariaDB +FullName: com.example.docker.DockerMariaDB Name: Docker MariaDB Description: | MariaDB strives to be the logical choice for database professionals looking for a robust, scalable, and reliable @@ -22,8 +22,8 @@ Description: | Author: 'Mirantis, Inc' Tags: [docker, application, MariaDB] Classes: - io.murano.apps.docker.DockerMariaDB: DockerMariaDB.yaml + com.example.docker.DockerMariaDB: DockerMariaDB.yaml Require: - io.murano.apps.docker.DockerStandaloneHost: - io.murano.apps.docker.kubernetes.KubernetesPod: - io.murano.apps.docker.Interfaces: + com.example.docker.DockerStandaloneHost: + com.mirantis.docker.kubernetes.KubernetesPod: + com.mirantis.docker.Interfaces: diff --git a/Applications/MongoDB/package/Classes/DockerMongoDB.yaml b/Applications/MongoDB/package/Classes/DockerMongoDB.yaml index 91a1714..b9aef66 100644 --- a/Applications/MongoDB/package/Classes/DockerMongoDB.yaml +++ b/Applications/MongoDB/package/Classes/DockerMongoDB.yaml @@ -11,12 +11,13 @@ # under the License. Namespaces: - =: io.murano.apps.docker + =: com.example.docker std: io.murano + interfaces: com.mirantis.docker Name: DockerMongoDB -Extends: DockerApplication +Extends: interfaces:DockerApplication Properties: name: diff --git a/Applications/MongoDB/package/UI/ui.yaml b/Applications/MongoDB/package/UI/ui.yaml index eeee5a4..c4176d5 100644 --- a/Applications/MongoDB/package/UI/ui.yaml +++ b/Applications/MongoDB/package/UI/ui.yaml @@ -14,7 +14,7 @@ Version: 2 Application: ?: - type: io.murano.apps.docker.DockerMongoDB + type: com.example.docker.DockerMongoDB name: $.appConfiguration.name host: $.appConfiguration.host publish: $.appConfiguration.publish @@ -36,8 +36,8 @@ Forms: underline are allowed - name: host type: - - io.murano.apps.docker.kubernetes.KubernetesPod - - io.murano.apps.docker.DockerStandaloneHost + - com.mirantis.docker.kubernetes.KubernetesPod + - com.example.docker.DockerStandaloneHost label: Container Host description: >- Select an instance of Docker contaniner hosting provider to run the app diff --git a/Applications/MongoDB/package/manifest.yaml b/Applications/MongoDB/package/manifest.yaml index 7dd4e2d..2d62aea 100644 --- a/Applications/MongoDB/package/manifest.yaml +++ b/Applications/MongoDB/package/manifest.yaml @@ -12,15 +12,15 @@ Format: 1.3 Type: Application -FullName: io.murano.apps.docker.DockerMongoDB +FullName: com.example.docker.DockerMongoDB Name: Docker MongoDB Description: | MongoDB (from “humongous”) is a cross-platform document-oriented database. Classified as a NoSQL database, MongoDB eschews the traditional table-based relational database structure in favor of JSON-like documents with dynamic schemas. Author: 'Mirantis, Inc' Tags: [Docker, MongoDB] Classes: - io.murano.apps.docker.DockerMongoDB: DockerMongoDB.yaml + com.example.docker.DockerMongoDB: DockerMongoDB.yaml Require: - io.murano.apps.docker.DockerStandaloneHost: - io.murano.apps.docker.kubernetes.KubernetesPod: - io.murano.apps.docker.Interfaces: + com.example.docker.DockerStandaloneHost: + com.mirantis.docker.kubernetes.KubernetesPod: + com.mirantis.docker.Interfaces: diff --git a/Applications/MySQL/package/Classes/DockerMySQL.yaml b/Applications/MySQL/package/Classes/DockerMySQL.yaml index 93b76fb..51ed2a2 100644 --- a/Applications/MySQL/package/Classes/DockerMySQL.yaml +++ b/Applications/MySQL/package/Classes/DockerMySQL.yaml @@ -11,12 +11,13 @@ # under the License. Namespaces: - =: io.murano.apps.docker + =: com.example.docker std: io.murano + interfaces: com.mirantis.docker Name: DockerMySQL -Extends: DockerApplication +Extends: interfaces:DockerApplication Properties: name: diff --git a/Applications/MySQL/package/UI/ui.yaml b/Applications/MySQL/package/UI/ui.yaml index 265f294..8efc294 100644 --- a/Applications/MySQL/package/UI/ui.yaml +++ b/Applications/MySQL/package/UI/ui.yaml @@ -14,7 +14,7 @@ Version: 2 Application: ?: - type: io.murano.apps.docker.DockerMySQL + type: com.example.docker.DockerMySQL name: $.appConfiguration.name host: $.appConfiguration.host publish: $.appConfiguration.publish @@ -37,8 +37,8 @@ Forms: underline are allowed - name: host type: - - io.murano.apps.docker.kubernetes.KubernetesPod - - io.murano.apps.docker.DockerStandaloneHost + - com.mirantis.docker.kubernetes.KubernetesPod + - com.example.docker.DockerStandaloneHost label: Container Host description: >- Select an instance of Docker contaniner hosting provider to run the app diff --git a/Applications/MySQL/package/manifest.yaml b/Applications/MySQL/package/manifest.yaml index 910a41d..9b0c288 100644 --- a/Applications/MySQL/package/manifest.yaml +++ b/Applications/MySQL/package/manifest.yaml @@ -12,15 +12,15 @@ Format: 1.3 Type: Application -FullName: io.murano.apps.docker.DockerMySQL +FullName: com.example.docker.DockerMySQL Name: Docker MySQL Description: | MySQL Docker Application. Adds MySQL docker container with MySQL listening on port 3306. Author: 'Mirantis, Inc' Tags: [docker, application] Classes: - io.murano.apps.docker.DockerMySQL: DockerMySQL.yaml + com.example.docker.DockerMySQL: DockerMySQL.yaml Require: - io.murano.apps.docker.DockerStandaloneHost: - io.murano.apps.docker.kubernetes.KubernetesPod: - io.murano.apps.docker.Interfaces: + com.example.docker.DockerStandaloneHost: + com.mirantis.docker.kubernetes.KubernetesPod: + com.mirantis.docker.Interfaces: diff --git a/Applications/Nginx/package/Classes/DockerNginx.yaml b/Applications/Nginx/package/Classes/DockerNginx.yaml index e4fce5d..1a147b3 100644 --- a/Applications/Nginx/package/Classes/DockerNginx.yaml +++ b/Applications/Nginx/package/Classes/DockerNginx.yaml @@ -11,12 +11,13 @@ # under the License. Namespaces: - =: io.murano.apps.docker + =: com.example.docker std: io.murano + interfaces: com.mirantis.docker Name: DockerNginx -Extends: DockerApplication +Extends: interfaces:DockerApplication Properties: name: diff --git a/Applications/Nginx/package/UI/ui.yaml b/Applications/Nginx/package/UI/ui.yaml index ee08d3d..579a991 100644 --- a/Applications/Nginx/package/UI/ui.yaml +++ b/Applications/Nginx/package/UI/ui.yaml @@ -14,7 +14,7 @@ Version: 2 Application: ?: - type: io.murano.apps.docker.DockerNginx + type: com.example.docker.DockerNginx name: $.appConfiguration.name host: $.appConfiguration.host publish: $.appConfiguration.publish @@ -37,8 +37,8 @@ Forms: underline are allowed - name: host type: - - io.murano.apps.docker.kubernetes.KubernetesPod - - io.murano.apps.docker.DockerStandaloneHost + - com.mirantis.docker.kubernetes.KubernetesPod + - com.example.docker.DockerStandaloneHost label: Container Host description: >- Select an instance of Docker contaniner hosting provider to run the app diff --git a/Applications/Nginx/package/manifest.yaml b/Applications/Nginx/package/manifest.yaml index ad3e6e3..6d62fa3 100644 --- a/Applications/Nginx/package/manifest.yaml +++ b/Applications/Nginx/package/manifest.yaml @@ -12,15 +12,15 @@ Format: 1.3 Type: Application -FullName: io.murano.apps.docker.DockerNginx +FullName: com.example.docker.DockerNginx Name: Docker Nginx Description: | Nginx (pronounced “engine-x”) is an open source reverse proxy server for HTTP, HTTPS, SMTP, POP3, and IMAP protocols, as well as a load balancer, HTTP cache, and a web server (origin server). Author: 'Mirantis, Inc' Tags: [docker, application, Nginx] Classes: - io.murano.apps.docker.DockerNginx: DockerNginx.yaml + com.example.docker.DockerNginx: DockerNginx.yaml Require: - io.murano.apps.docker.DockerStandaloneHost: - io.murano.apps.docker.kubernetes.KubernetesPod: - io.murano.apps.docker.Interfaces: + com.example.docker.DockerStandaloneHost: + com.mirantis.docker.kubernetes.KubernetesPod: + com.mirantis.docker.Interfaces: diff --git a/Applications/NginxSite/package/Classes/DockerNginxSite.yaml b/Applications/NginxSite/package/Classes/DockerNginxSite.yaml index 77a29b1..a5dbf0a 100644 --- a/Applications/NginxSite/package/Classes/DockerNginxSite.yaml +++ b/Applications/NginxSite/package/Classes/DockerNginxSite.yaml @@ -11,12 +11,13 @@ # under the License. Namespaces: - =: io.murano.apps.docker + =: com.example.docker std: io.murano + interfaces: com.mirantis.docker Name: DockerNginxSite -Extends: DockerApplication +Extends: interfaces:DockerApplication Properties: name: diff --git a/Applications/NginxSite/package/UI/ui.yaml b/Applications/NginxSite/package/UI/ui.yaml index 8273424..9303be3 100644 --- a/Applications/NginxSite/package/UI/ui.yaml +++ b/Applications/NginxSite/package/UI/ui.yaml @@ -14,7 +14,7 @@ Version: 2 Application: ?: - type: io.murano.apps.docker.DockerNginxSite + type: com.example.docker.DockerNginxSite name: $.appConfiguration.name host: $.appConfiguration.host publish: $.appConfiguration.publish @@ -44,8 +44,8 @@ Forms: description: Enter an URL to git repository with site content - name: host type: - - io.murano.apps.docker.kubernetes.KubernetesPod - - io.murano.apps.docker.DockerStandaloneHost + - com.mirantis.docker.kubernetes.KubernetesPod + - com.example.docker.DockerStandaloneHost label: Container Host description: >- Select an instance of Docker contaniner hosting provider to run the app diff --git a/Applications/NginxSite/package/manifest.yaml b/Applications/NginxSite/package/manifest.yaml index d41c653..7836d8d 100644 --- a/Applications/NginxSite/package/manifest.yaml +++ b/Applications/NginxSite/package/manifest.yaml @@ -12,15 +12,15 @@ Format: 1.3 Type: Application -FullName: io.murano.apps.docker.DockerNginxSite +FullName: com.example.docker.DockerNginxSite Name: Docker Nginx Site Description: | Deploys a site from a Git URL using Nginx as the web server. Author: 'Mirantis, Inc' Tags: [docker, application, Nginx] Classes: - io.murano.apps.docker.DockerNginxSite: DockerNginxSite.yaml + com.example.docker.DockerNginxSite: DockerNginxSite.yaml Require: - io.murano.apps.docker.DockerStandaloneHost: - io.murano.apps.docker.kubernetes.KubernetesPod: - io.murano.apps.docker.Interfaces: + com.example.docker.DockerStandaloneHost: + com.mirantis.docker.kubernetes.KubernetesPod: + com.mirantis.docker.Interfaces: diff --git a/Applications/Orion/package/Classes/DockerOrion.yaml b/Applications/Orion/package/Classes/DockerOrion.yaml index 63925df..6426abc 100644 --- a/Applications/Orion/package/Classes/DockerOrion.yaml +++ b/Applications/Orion/package/Classes/DockerOrion.yaml @@ -11,12 +11,13 @@ # under the License. Namespaces: - =: io.murano.apps.docker + =: com.example.docker std: io.murano + interfaces: com.mirantis.docker Name: DockerOrion -Extends: DockerApplication +Extends: interfaces:DockerApplication Properties: name: diff --git a/Applications/Orion/package/UI/ui.yaml b/Applications/Orion/package/UI/ui.yaml index 6d01155..664555a 100644 --- a/Applications/Orion/package/UI/ui.yaml +++ b/Applications/Orion/package/UI/ui.yaml @@ -14,7 +14,7 @@ Version: 2 Application: ?: - type: io.murano.apps.docker.DockerOrion + type: com.example.docker.DockerOrion name: $.appConfiguration.name host: $.appConfiguration.host publish: $.appConfiguration.publish @@ -37,8 +37,8 @@ Forms: underline are allowed - name: host type: - - io.murano.apps.docker.kubernetes.KubernetesPod - - io.murano.apps.docker.DockerStandaloneHost + - com.mirantis.docker.kubernetes.KubernetesPod + - com.example.docker.DockerStandaloneHost label: Container Host description: >- Select an instance of Docker contaniner hosting provider to run the app @@ -53,7 +53,7 @@ Forms: - mongoConfig: fields: - name: mongoDB - type: io.murano.apps.docker.DockerMongoDB + type: com.example.docker.DockerMongoDB label: MongoDB instance required: true description: >- diff --git a/Applications/Orion/package/manifest.yaml b/Applications/Orion/package/manifest.yaml index 22cf38c..79fec32 100644 --- a/Applications/Orion/package/manifest.yaml +++ b/Applications/Orion/package/manifest.yaml @@ -12,16 +12,16 @@ Format: 1.3 Type: Application -FullName: io.murano.apps.docker.DockerOrion +FullName: com.example.docker.DockerOrion Name: Orion Docker Description: | The FIWARE Orion Context Broker is an implementation of the Publish/Subscribe Context Broker GE, providing the NGSI9 and NGSI10 interfaces. Author: 'TID' Tags: [docker, application, Orion, FIWARE] Classes: - io.murano.apps.docker.DockerOrion: DockerOrion.yaml + com.example.docker.DockerOrion: DockerOrion.yaml Require: - io.murano.apps.docker.DockerStandaloneHost: - io.murano.apps.docker.kubernetes.KubernetesPod: - io.murano.apps.docker.Interfaces: - io.murano.apps.docker.DockerMongoDB: + com.example.docker.DockerStandaloneHost: + com.mirantis.docker.kubernetes.KubernetesPod: + com.mirantis.docker.Interfaces: + com.example.docker.DockerMongoDB: diff --git a/Applications/PostgreSQL/package/Classes/DockerPostgreSQL.yaml b/Applications/PostgreSQL/package/Classes/DockerPostgreSQL.yaml index 7e61248..5082aaa 100644 --- a/Applications/PostgreSQL/package/Classes/DockerPostgreSQL.yaml +++ b/Applications/PostgreSQL/package/Classes/DockerPostgreSQL.yaml @@ -11,12 +11,13 @@ # under the License. Namespaces: - =: io.murano.apps.docker + =: com.example.docker std: io.murano + interfaces: com.mirantis.docker Name: DockerPostgreSQL -Extends: DockerApplication +Extends: interfaces:DockerApplication Properties: name: diff --git a/Applications/PostgreSQL/package/UI/ui.yaml b/Applications/PostgreSQL/package/UI/ui.yaml index 23b2425..d0456b8 100644 --- a/Applications/PostgreSQL/package/UI/ui.yaml +++ b/Applications/PostgreSQL/package/UI/ui.yaml @@ -14,7 +14,7 @@ Version: 2 Application: ?: - type: io.murano.apps.docker.DockerPostgreSQL + type: com.example.docker.DockerPostgreSQL name: $.appConfiguration.name host: $.appConfiguration.host publish: $.appConfiguration.publish @@ -37,8 +37,8 @@ Forms: underline are allowed - name: host type: - - io.murano.apps.docker.kubernetes.KubernetesPod - - io.murano.apps.docker.DockerStandaloneHost + - com.mirantis.docker.kubernetes.KubernetesPod + - com.example.docker.DockerStandaloneHost label: Container Host description: >- Select an instance of Docker contaniner hosting provider to run the app diff --git a/Applications/PostgreSQL/package/manifest.yaml b/Applications/PostgreSQL/package/manifest.yaml index 1fd63b5..5a7d873 100644 --- a/Applications/PostgreSQL/package/manifest.yaml +++ b/Applications/PostgreSQL/package/manifest.yaml @@ -12,15 +12,15 @@ Format: 1.3 Type: Application -FullName: io.murano.apps.docker.DockerPostgreSQL +FullName: com.example.docker.DockerPostgreSQL Name: Docker Postgres Description: | PostgreSQL, often simply “Postgres”, is an object-relational database management system (ORDBMS) with an emphasis on extensibility and standards-compliance. As a database server, its primary function is to store data, securely and supporting best practices, and retrieve it later, as requested by other software applications, be it those on the same computer or those running on another computer across a network (including the Internet). Author: 'Mirantis, Inc' Tags: [docker, application, Postgres] Classes: - io.murano.apps.docker.DockerPostgreSQL: DockerPostgreSQL.yaml + com.example.docker.DockerPostgreSQL: DockerPostgreSQL.yaml Require: - io.murano.apps.docker.DockerStandaloneHost: - io.murano.apps.docker.kubernetes.KubernetesPod: - io.murano.apps.docker.Interfaces: + com.example.docker.DockerStandaloneHost: + com.mirantis.docker.kubernetes.KubernetesPod: + com.mirantis.docker.Interfaces: diff --git a/Applications/Redis/package/Classes/DockerRedis.yaml b/Applications/Redis/package/Classes/DockerRedis.yaml index 500c530..c7b9395 100644 --- a/Applications/Redis/package/Classes/DockerRedis.yaml +++ b/Applications/Redis/package/Classes/DockerRedis.yaml @@ -11,12 +11,13 @@ # under the License. Namespaces: - =: io.murano.apps.docker + =: com.example.docker std: io.murano + interfaces: com.mirantis.docker Name: DockerRedis -Extends: DockerApplication +Extends: interfaces:DockerApplication Properties: name: diff --git a/Applications/Redis/package/UI/ui.yaml b/Applications/Redis/package/UI/ui.yaml index 1dcd440..aa1900e 100644 --- a/Applications/Redis/package/UI/ui.yaml +++ b/Applications/Redis/package/UI/ui.yaml @@ -14,7 +14,7 @@ Version: 2 Application: ?: - type: io.murano.apps.docker.DockerRedis + type: com.example.docker.DockerRedis name: $.appConfiguration.name host: $.appConfiguration.host publish: $.appConfiguration.publish @@ -37,8 +37,8 @@ Forms: underline are allowed - name: host type: - - io.murano.apps.docker.kubernetes.KubernetesPod - - io.murano.apps.docker.DockerStandaloneHost + - com.mirantis.docker.kubernetes.KubernetesPod + - com.example.docker.DockerStandaloneHost label: Container Host description: >- Select an instance of Docker contaniner hosting provider to run the app diff --git a/Applications/Redis/package/manifest.yaml b/Applications/Redis/package/manifest.yaml index ccf8b89..6e0f225 100644 --- a/Applications/Redis/package/manifest.yaml +++ b/Applications/Redis/package/manifest.yaml @@ -12,15 +12,15 @@ Format: 1.3 Type: Application -FullName: io.murano.apps.docker.DockerRedis +FullName: com.example.docker.DockerRedis Name: Docker Redis Description: | Redis is an open-source, networked, in-memory, key-value data store with optional durability. It is written in ANSI C and the name Redis means REmote DIctionary Server. Author: 'Mirantis, Inc' Tags: [docker, application, Redis] Classes: - io.murano.apps.docker.DockerRedis: DockerRedis.yaml + com.example.docker.DockerRedis: DockerRedis.yaml Require: - io.murano.apps.docker.DockerStandaloneHost: - io.murano.apps.docker.kubernetes.KubernetesPod: - io.murano.apps.docker.Interfaces: + com.example.docker.DockerStandaloneHost: + com.mirantis.docker.kubernetes.KubernetesPod: + com.mirantis.docker.Interfaces: diff --git a/Applications/Tomcat/package/Classes/DockerTomcat.yaml b/Applications/Tomcat/package/Classes/DockerTomcat.yaml index 0e04c0a..356d5f4 100644 --- a/Applications/Tomcat/package/Classes/DockerTomcat.yaml +++ b/Applications/Tomcat/package/Classes/DockerTomcat.yaml @@ -11,12 +11,13 @@ # under the License. Namespaces: - =: io.murano.apps.docker + =: com.example.docker std: io.murano + interfaces: com.mirantis.docker Name: DockerTomcat -Extends: DockerApplication +Extends: interfaces:DockerApplication Properties: name: diff --git a/Applications/Tomcat/package/UI/ui.yaml b/Applications/Tomcat/package/UI/ui.yaml index 86b834d..4aa52a3 100644 --- a/Applications/Tomcat/package/UI/ui.yaml +++ b/Applications/Tomcat/package/UI/ui.yaml @@ -14,7 +14,7 @@ Version: 2 Application: ?: - type: io.murano.apps.docker.DockerTomcat + type: com.example.docker.DockerTomcat name: $.appConfiguration.name host: $.appConfiguration.host publish: $.appConfiguration.publish @@ -42,8 +42,8 @@ Forms: description: Password for admin user in Tomcat - name: host type: - - io.murano.apps.docker.kubernetes.KubernetesPod - - io.murano.apps.docker.DockerStandaloneHost + - com.mirantis.docker.kubernetes.KubernetesPod + - com.example.docker.DockerStandaloneHost label: Container Host description: >- Select an instance of Docker contaniner hosting provider to run the app diff --git a/Applications/Tomcat/package/manifest.yaml b/Applications/Tomcat/package/manifest.yaml index 224cfd8..99c866d 100644 --- a/Applications/Tomcat/package/manifest.yaml +++ b/Applications/Tomcat/package/manifest.yaml @@ -12,15 +12,15 @@ Format: 1.3 Type: Application -FullName: io.murano.apps.docker.DockerTomcat +FullName: com.example.docker.DockerTomcat Name: Docker Tomcat Description: | Apache Tomcat (or simply Tomcat) is an open source web server and servlet container developed by the Apache Software Foundation (ASF). Tomcat implements the Java Servlet and the JavaServer Pages (JSP) specifications from Oracle, and provides a “pure Java” HTTP web server environment for Java code to run in. Author: 'Mirantis, Inc' Tags: [docker, application, Tomcat] Classes: - io.murano.apps.docker.DockerTomcat: DockerTomcat.yaml + com.example.docker.DockerTomcat: DockerTomcat.yaml Require: - io.murano.apps.docker.DockerStandaloneHost: - io.murano.apps.docker.kubernetes.KubernetesPod: - io.murano.apps.docker.Interfaces: + com.example.docker.DockerStandaloneHost: + com.mirantis.docker.kubernetes.KubernetesPod: + com.mirantis.docker.Interfaces: diff --git a/DockerStandaloneHost/package/Classes/DockerStandaloneHost.yaml b/DockerStandaloneHost/package/Classes/DockerStandaloneHost.yaml index 51c5879..61895a6 100644 --- a/DockerStandaloneHost/package/Classes/DockerStandaloneHost.yaml +++ b/DockerStandaloneHost/package/Classes/DockerStandaloneHost.yaml @@ -11,15 +11,16 @@ # under the License. Namespaces: - =: io.murano.apps.docker + =: com.example.docker res: io.murano.resources std: io.murano sys: io.murano.system + interfaces: com.mirantis.docker Name: DockerStandaloneHost Extends: - - DockerContainerHost + - interfaces:DockerContainerHost Properties: name: diff --git a/DockerStandaloneHost/package/UI/ui.yaml b/DockerStandaloneHost/package/UI/ui.yaml index 1bfa92d..c887686 100644 --- a/DockerStandaloneHost/package/UI/ui.yaml +++ b/DockerStandaloneHost/package/UI/ui.yaml @@ -14,7 +14,7 @@ Version: 2 Application: ?: - type: io.murano.apps.docker.DockerStandaloneHost + type: com.example.docker.DockerStandaloneHost name: $.appConfiguration.name dockerRegistry: $.appConfiguration.dockerRegistry dockerMirror: $.appConfiguration.dockerMirror diff --git a/DockerStandaloneHost/package/manifest.yaml b/DockerStandaloneHost/package/manifest.yaml index 560f242..87628e4 100644 --- a/DockerStandaloneHost/package/manifest.yaml +++ b/DockerStandaloneHost/package/manifest.yaml @@ -12,7 +12,7 @@ Format: 1.3 Type: Application -FullName: io.murano.apps.docker.DockerStandaloneHost +FullName: com.example.docker.DockerStandaloneHost Name: Docker Standalone Host Description: | Docker is an open platform for developers and sysadmins to build, ship, and run @@ -23,6 +23,6 @@ Description: | Author: 'Mirantis, Inc' Tags: [ Docker ] Classes: - io.murano.apps.docker.DockerStandaloneHost: DockerStandaloneHost.yaml + com.example.docker.DockerStandaloneHost: DockerStandaloneHost.yaml Require: - io.murano.apps.docker.Interfaces: + com.mirantis.docker.Interfaces: