-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge Kohl's Custom Changes Into Master Branch #10
Changes from all commits
0c62da6
17a676e
8d5964d
f3d8c30
6db8c0e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,66 @@ | ||||||||||||||||||||
--- | ||||||||||||||||||||
- name: Set Facts | ||||||||||||||||||||
hosts: localhost | ||||||||||||||||||||
connection: local | ||||||||||||||||||||
vars_files: | ||||||||||||||||||||
- login-creds.yml | ||||||||||||||||||||
tasks: | ||||||||||||||||||||
- include_tasks: setup-test.yml | ||||||||||||||||||||
- set_fact: | ||||||||||||||||||||
ignore_differences: | ||||||||||||||||||||
metadata: | ||||||||||||||||||||
annotations: | ||||||||||||||||||||
kubectl.kubernetes.io/last-applied-configuration: '' | ||||||||||||||||||||
creationTimestamp: null | ||||||||||||||||||||
selfLink: null | ||||||||||||||||||||
namespace: provision-test | ||||||||||||||||||||
spec: | ||||||||||||||||||||
sessionAffinityConfig: | ||||||||||||||||||||
clientIP: | ||||||||||||||||||||
timeoutSeconds: 10800 | ||||||||||||||||||||
|
||||||||||||||||||||
- name: Test Provision | ||||||||||||||||||||
hosts: localhost | ||||||||||||||||||||
connection: local | ||||||||||||||||||||
vars: | ||||||||||||||||||||
provision_service: >- | ||||||||||||||||||||
{{ lookup('template', 'resources/test-service.yml.j2') | ||||||||||||||||||||
| from_yaml }} | ||||||||||||||||||||
service_ports: | ||||||||||||||||||||
- name: 8080-tcp | ||||||||||||||||||||
port: 8080 | ||||||||||||||||||||
|
||||||||||||||||||||
roles: | ||||||||||||||||||||
- role: openshift-provision | ||||||||||||||||||||
openshift_clusters: | ||||||||||||||||||||
- projects: | ||||||||||||||||||||
- name: provision-test | ||||||||||||||||||||
|
||||||||||||||||||||
tasks: | ||||||||||||||||||||
- name: Provision Service | ||||||||||||||||||||
openshift_provision: | ||||||||||||||||||||
connection: "{{ openshift_connection }}" | ||||||||||||||||||||
namespace: provision-test | ||||||||||||||||||||
resource: "{{ provision_service }}" | ||||||||||||||||||||
generate_resources: True | ||||||||||||||||||||
|
||||||||||||||||||||
- name: Get Service | ||||||||||||||||||||
command: cat ./manifests/provision-test_Service_test-service.json | ||||||||||||||||||||
register: get_service | ||||||||||||||||||||
changed_when: false | ||||||||||||||||||||
|
||||||||||||||||||||
- name: Verify Service | ||||||||||||||||||||
fail: | ||||||||||||||||||||
msg: | | ||||||||||||||||||||
Service not defined as expected | ||||||||||||||||||||
>>> | ||||||||||||||||||||
{{ cmp_service | to_yaml }} | ||||||||||||||||||||
=== | ||||||||||||||||||||
{{ got_service | to_yaml }} | ||||||||||||||||||||
<<< | ||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Line 56, 58, and 60 look messed up to me. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @seanmalloy I don't believe this is messed up, I believe I had used a different test as an example. ansible-role-openshift-provision/tests/test-cluster_resources-ClusterResourceQuota.yml Lines 94 to 102 in 6db8c0e
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @vinny-sabatini sounds good |
||||||||||||||||||||
vars: | ||||||||||||||||||||
got_service: "{{ get_service.stdout | from_json | combine(ignore_differences, recursive=True) }}" | ||||||||||||||||||||
cmp_service: "{{ provision_service | combine(ignore_differences, recursive=True) }}" | ||||||||||||||||||||
when: >- | ||||||||||||||||||||
cmp_service.metadata != got_service.metadata or | ||||||||||||||||||||
cmp_service.spec != got_service.spec |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This block of code should fix gnuthought#53