Skip to content

Commit

Permalink
small-adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmadiesa-abu committed Jun 21, 2023
1 parent 37d86c9 commit 9c345e7
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 56 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
2.0.12:
- fix install config for docker host.
2.0.13:
- Add PullImage Node type.
- Allow docker installation without sudo.
- Add PullImage support.
- Allow docker installation without sudo and offline.
2 changes: 1 addition & 1 deletion cloudify_docker/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = '2.0.12'
version = '2.0.13'
1 change: 0 additions & 1 deletion cloudify_docker/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1192,4 +1192,3 @@ def remove_container(ctx, docker_client, **kwargs):
remove_res = container_obj.remove()
ctx.instance.runtime_properties.pop('container')
ctx.logger.info("Remove result {0}".format(remove_res))

26 changes: 0 additions & 26 deletions plugin_1_4.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -230,17 +230,6 @@ data_types:
description: Pull all tags (only if pull_image is True)
default: false

cloudify.types.docker.PullImage:
properties:
tag:
description: Docker image tag
type: string
default: ''
all_tags:
type: boolean
description: Pull all tags
default: false

cloudify.types.docker.Container:
properties:
image_tag:
Expand Down Expand Up @@ -376,21 +365,6 @@ node_types:
delete:
implementation: docker.cloudify_docker.tasks.remove_image

cloudify.nodes.docker.pullimage:
derived_from: cloudify.nodes.Root
properties:
<<: *client_config
resource_config:
type: cloudify.types.docker.PullImage
description: Docker Image type
required: true
interfaces:
cloudify.interfaces.lifecycle:
create:
implementation: docker.cloudify_docker.tasks.pull_image
delete:
implementation: docker.cloudify_docker.tasks.remove_image

cloudify.nodes.docker.container:
derived_from: cloudify.nodes.Root
properties:
Expand Down
26 changes: 0 additions & 26 deletions v2_plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -230,17 +230,6 @@ data_types:
description: Pull all tags (only if pull_image is True)
default: false

cloudify.types.docker.PullImage:
properties:
tag:
description: Docker image tag
type: string
default: ''
all_tags:
type: boolean
description: Pull all tags
default: false

cloudify.types.docker.Container:
properties:
image_tag:
Expand Down Expand Up @@ -376,21 +365,6 @@ node_types:
delete:
implementation: docker.cloudify_docker.tasks.remove_image

cloudify.nodes.docker.pullimage:
derived_from: cloudify.nodes.Root
properties:
<<: *client_config
resource_config:
type: cloudify.types.docker.PullImage
description: Docker Image type
required: true
interfaces:
cloudify.interfaces.lifecycle:
create:
implementation: docker.cloudify_docker.tasks.pull_image
delete:
implementation: docker.cloudify_docker.tasks.remove_image

cloudify.nodes.docker.container:
derived_from: cloudify.nodes.Root
properties:
Expand Down

0 comments on commit 9c345e7

Please sign in to comment.