mirror of
https://github.com/ansible-collections/kubernetes.core.git
synced 2026-05-08 22:12:44 +00:00
Remove molecule dependencies (#261)
Remove molecule dependencies SUMMARY Depends-on: ansible-collections/cloud.common#92 Molecule is overwriting the cloud.common dependency installed by zuul, which is causing issues with the CI job for turbo mode. We still need to find a way to test against the latest released version of cloud.common. ISSUE TYPE Bugfix Pull Request COMPONENT NAME ADDITIONAL INFORMATION Reviewed-by: Gonéri Le Bouder <goneri@lebouder.net> Reviewed-by: None <None>
This commit is contained in:
@@ -33,7 +33,3 @@ scenario:
|
|||||||
- prepare
|
- prepare
|
||||||
- converge
|
- converge
|
||||||
- verify
|
- verify
|
||||||
dependency:
|
|
||||||
name: galaxy
|
|
||||||
options:
|
|
||||||
requirements-file: requirements.yml
|
|
||||||
|
|||||||
@@ -11,6 +11,17 @@
|
|||||||
kind: Namespace
|
kind: Namespace
|
||||||
name: '{{ drain_namespace }}'
|
name: '{{ drain_namespace }}'
|
||||||
|
|
||||||
|
# It seems that the default ServiceAccount can take a bit to be created
|
||||||
|
# right after a cluster is brought up. This can lead to the ServiceAccount
|
||||||
|
# admission controller rejecting a Pod creation request because the
|
||||||
|
# ServiceAccount does not yet exist.
|
||||||
|
- name: Wait for default serviceaccount to be created
|
||||||
|
k8s_info:
|
||||||
|
kind: ServiceAccount
|
||||||
|
name: default
|
||||||
|
namespace: "{{ drain_namespace }}"
|
||||||
|
wait: yes
|
||||||
|
|
||||||
- name: list cluster nodes
|
- name: list cluster nodes
|
||||||
k8s_info:
|
k8s_info:
|
||||||
kind: node
|
kind: node
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
collections:
|
|
||||||
- name: cloud.common
|
|
||||||
version: ">=2.0.4"
|
|
||||||
Reference in New Issue
Block a user