-
Notifications
You must be signed in to change notification settings - Fork 432
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(api, worker): openstack integration storage (#3900)
* feat(api, worker): openstack integration storage artifactUpload, artifactDownlaod, ServeStaticFiles Actions - and worker cache command can now use a dedicated openstack tenant Signed-off-by: Yvonnick Esnault <[email protected]>
- Loading branch information
Showing
87 changed files
with
1,323 additions
and
910 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
2 changes: 1 addition & 1 deletion
2
...ations/arsenal/plugin-arsenal/arsenal.yml → ...rations/arsenal/plugin-arsenal/plugin.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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name: arsenal-deployment-plugin | ||
type: integration-deploy_application | ||
integration: Arsenal | ||
author: "François Samin" | ||
author: "OVH SAS" | ||
description: "OVH Arsenal Deployment Plugin" |
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
...ntegrations/hello/plugin-hello/plugin.yml → .../hello/plugin-hello-deployment/plugin.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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name: hello-deployment-plugin | ||
type: integration | ||
type: integration-deploy_application | ||
integration: Hello | ||
author: "Yvonnick Esnault" | ||
author: "OVH SAS" | ||
description: "Hello Example Deployment Plugin" |
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
6 changes: 3 additions & 3 deletions
6
contrib/integrations/kubernetes/plugin-kubernetes/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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name: kubernetes-deployment-plugin | ||
type: integration | ||
name: plugin-kubernetes-deployment | ||
type: integration-deploy_application | ||
integration: Kubernetes | ||
author: "Benjamin Coenen" | ||
author: "OVH SAS" | ||
description: "Kubernetes Deployment Plugin" |
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,17 @@ | ||
# How to import a OpenStack configuration | ||
|
||
An OpenStack Integration use the builtin integration model named **Openstack**. | ||
|
||
You can set an OpenStack configuration on a CDS Project. | ||
|
||
If you want to set a global OpenStack configuration, available on all CDS Projects, you | ||
have just to set the attribute **public** to `true` in the openstack.yml file. | ||
|
||
```bash | ||
|
||
# 1 - edit the openstack.yml file | ||
|
||
# 2 - run | ||
$ cdsctl project integration import openstack.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,29 @@ | ||
name: MyOpenstackTenant | ||
model: | ||
name: Openstack | ||
public: false | ||
config: | ||
address: | ||
value: https://auth.cloud.ovh.net/v2.0/ | ||
type: string | ||
domain: | ||
value: "" | ||
type: string | ||
password: | ||
value: 'your-password-here' | ||
type: password | ||
region: | ||
value: your-region | ||
type: string | ||
storage_container_prefix: | ||
value: cds-prefix- | ||
type: string | ||
storage_temporary_url_supported: | ||
value: "true" | ||
type: string | ||
tenant_name: | ||
value: "your-openstack-tenant" | ||
type: string | ||
username: | ||
value: your-openstack-user | ||
type: string |
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
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
Oops, something went wrong.