Skip to content

Commit

Permalink
revert prior commits
Browse files Browse the repository at this point in the history
  • Loading branch information
tbho committed Jan 3, 2023
1 parent ce26d9c commit a2ef9b0
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions molecule/default/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

# Testing dokku_global_cert
- name: Check that dokku_global_cert module can parse output
dokku_global_cert:
dokku_bot.dokku_collection.dokku_global_cert:
state: absent

# Testing dokku_hostname
Expand Down Expand Up @@ -42,12 +42,12 @@
# Testing dokku_app
- name: create example-app
dokku_app:
dokku_bot.dokku_collection.dokku_app:
app: example-app

# Testing dokku_acl_app
- name: Let gverdi manage example-app
dokku_acl_app:
dokku_bot.dokku_collection.dokku_acl_app:
app: example-app
users:
- gverdi
Expand All @@ -68,7 +68,7 @@
{{ dokku_acl_list.stdout }}
- name: Remove permission for gverdi to manage example-app
dokku_acl_app:
dokku_bot.dokku_collection.dokku_acl_app:
app: example-app
users:
- gverdi
Expand All @@ -92,7 +92,7 @@
# Testing dokku_clone
- name: clone example-app
dokku_clone:
dokku_bot.dokku_collection.dokku_clone:
app: example-app
repository: https://github.com/heroku/node-js-getting-started
version: b10a4d7a20a6bbe49655769c526a2b424e0e5d0b
Expand All @@ -110,7 +110,7 @@
{{ dokku_apps.stdout }}
- name: clone example app again
dokku_clone:
dokku_bot.dokku_collection.dokku_clone:
app: example-app
repository: https://github.com/heroku/node-js-getting-started
version: b10a4d7a20a6bbe49655769c526a2b424e0e5d0b
Expand All @@ -126,7 +126,7 @@
# Testing dokku_network
- name: Create a network # noqa 301
dokku_network:
dokku_bot.dokku_collection.dokku_network:
name: example-network
register: example_network

Expand All @@ -143,7 +143,7 @@
{{ dokku_networks.stdout }}
- name: Create a network that already exists # noqa 301
dokku_network:
dokku_bot.dokku_collection.dokku_network:
name: example-network
register: example_network

Expand All @@ -156,7 +156,7 @@
# Testing dokku_network_property
- name: Setting a network property for an app
dokku_network_property:
dokku_bot.dokku_collection.dokku_network_property:
app: example-app
property: attach-post-create
value: example-network
Expand All @@ -174,7 +174,7 @@
{{ example_app_network_report.stdout }}
- name: Clearing a network property for an app
dokku_network_property:
dokku_bot.dokku_collection.dokku_network_property:
app: example-app
property: attach-post-create

Expand All @@ -192,7 +192,7 @@
# Testing dokku_ports
- name: Set port mapping for an app
dokku_ports:
dokku_bot.dokku_collection.dokku_ports:
app: example-app
mappings:
- http:80:5000
Expand All @@ -212,7 +212,7 @@
{{ dokku_proxy_ports.stdout }}
- name: Set port mapping that already exists
dokku_ports:
dokku_bot.dokku_collection.dokku_ports:
app: example-app
mappings:
- http:80:5000
Expand All @@ -226,7 +226,7 @@
Setting existing port mapping resulted in changed status
- name: Remove port mapping
dokku_ports:
dokku_bot.dokku_collection.dokku_ports:
app: example-app
mappings:
- http:8080:5000
Expand All @@ -246,7 +246,7 @@
# Testing dokku_ps_scale
- name: Scaling application processes
dokku_ps_scale:
dokku_bot.dokku_collection.dokku_ps_scale:
app: example-app
scale:
web: 2
Expand All @@ -270,7 +270,7 @@
state: directory

- name: Deploy meilisearch using dokku_image
dokku_image:
dokku_bot.dokku_collection.dokku_image:
app: ms
user_name: Elliot Alderson
user_email: [email protected]
Expand All @@ -291,7 +291,7 @@
# Testing dokku_builder
- name: Configuring the builder for an app
dokku_builder:
dokku_bot.dokku_collection.dokku_builder:
app: example-app
property: build-dir
value: /app
Expand All @@ -310,7 +310,7 @@
# Testing dokku_http_auth
- name: Enabling http-auth for an app
dokku_http_auth:
dokku_bot.dokku_collection.dokku_http_auth:
app: example-app
state: present
username: samsepi0l
Expand All @@ -329,7 +329,7 @@
{{ dokku_http_auth_on.stdout }}
- name: Disabling http-auth for an app
dokku_http_auth:
dokku_bot.dokku_collection.dokku_http_auth:
app: example-app
state: absent

Expand All @@ -347,7 +347,7 @@
# Testing dokku_checks
- name: Disabling the Zero Downtime deployment
dokku_checks:
dokku_bot.dokku_collection.dokku_checks:
app: example-app
state: absent

Expand All @@ -364,7 +364,7 @@
{{ dokku_checks.stdout }}
- name: Re-enabling the Zero Downtime deployment
dokku_checks:
dokku_bot.dokku_collection.dokku_checks:
app: example-app
state: present

Expand All @@ -382,7 +382,7 @@
# Testing dokku_docker_options
- name: Set docker build options
dokku_docker_options:
dokku_bot.dokku_collection.dokku_docker_options:
app: example-app
phase: build
option: "--pull"
Expand All @@ -400,7 +400,7 @@
{{ dokku_docker_options.stdout }}
- name: Set docker build options that already exist # noqa 301
dokku_docker_options:
dokku_bot.dokku_collection.dokku_docker_options:
app: example-app
phase: build
option: "--pull"
Expand All @@ -414,7 +414,7 @@
Setting existing docker options resulted in changed status
- name: Remove docker build options
dokku_docker_options:
dokku_bot.dokku_collection.dokku_docker_options:
app: example-app
phase: build
option: "--pull"
Expand Down

0 comments on commit a2ef9b0

Please sign in to comment.