Removes *.log. Updates ansible.cfg

This commit is contained in:
Chris Houseknecht
2017-03-27 13:51:30 -04:00
parent 83d369131a
commit b6689dd855
4 changed files with 19 additions and 6423 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,2 +1,3 @@
[defaults]
roles_path=../..
nocows=1

View File

@@ -1,6 +1,16 @@
- name: Delete project
k8s_v1_project:
name: hello
state: absent
debug: yes
register: delete_project
- debug: var=delete_project
- name: Create project
k8s_v1_project:
name: hello
state: present
display_name: Hello World
description: Hello.
debug: yes
@@ -28,7 +38,7 @@
- name: Create deployment config
k8s_v1_deployment_config:
name: hello-depoy
name: hello-deploy
namespace: hello
state: present
debug: yes
@@ -42,6 +52,9 @@
image: openshift/busybox-http-app
ports:
- container_port: 8080
protocol: TCP
name: web-8080-tcp
- container_port: 8100
protocol: TCP
name: web-8100-tcp
replicas: 1
@@ -65,3 +78,4 @@
register: create_route
- debug: var=create_route

View File

@@ -3,5 +3,7 @@
remote_user: root
roles:
- role: ansible-kubernetes-modules
install_python_requirements: no
install_python_requirements: no
- role: hello-world
- role: hello-templates