Server IP : 85.214.239.14 / Your IP : 3.149.240.101 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/2/root/proc/3/root/lib/python3/dist-packages/ansible_collections/community/okd/ |
Upload File : |
.PHONY: molecule # Also needs to be updated in galaxy.yml VERSION = 2.3.0 SANITY_TEST_ARGS ?= --docker --color UNITS_TEST_ARGS ?= --docker --color PYTHON_VERSION ?= `python3 -c 'import platform; print("{0}.{1}".format(platform.python_version_tuple()[0], platform.python_version_tuple()[1]))'` clean: rm -f community-okd-$(VERSION).tar.gz rm -f redhat-openshift-$(VERSION).tar.gz rm -rf ansible_collections build: clean ansible-galaxy collection build install: build ansible-galaxy collection install -p ansible_collections community-okd-$(VERSION).tar.gz sanity: install cd ansible_collections/community/okd && ansible-test sanity -v --python $(PYTHON_VERSION) $(SANITY_TEST_ARGS) units: install cd ansible_collections/community/okd && ansible-test units -v --python $(PYTHON_VERSION) $(UNITS_TEST_ARGS) molecule: install molecule test test-integration: upstream-test-integration downstream-test-integration test-sanity: upstream-test-sanity downstream-test-sanity test-units: upstream-test-units downstream-test-units test-integration-incluster: ./ci/incluster_integration.sh upstream-test-sanity: sanity upstream-test-units: units upstream-test-integration: molecule downstream-test-sanity: ./ci/downstream.sh -s downstream-test-units: ./ci/downstream.sh -u downstream-test-integration: ./ci/downstream.sh -i downstream-build: ./ci/downstream.sh -b