This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: win-webserver | |
labels: | |
app: win-webserver | |
spec: | |
ports: | |
# the port that this service should serve on | |
- port: 80 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# Patches openssl problem and restarts needed services | |
- name: Apply common configration to all nodes | |
hosts: all | |
sudo: yes | |
# Uncomment to apply update one server at a time | |
# serial: 1 | |
tasks: | |
- name: "Install packages and update cache" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[mikecali@rhel-tower vm_disk_add]$ ansible-playbook tasks/add_disks.yml -vvvv | |
Using /etc/ansible/ansible.cfg as config file | |
Loading callback plugin default of type stdout, v2.0 from /usr/lib/python2.7/site-packages/ansible/plugins/callback/__init__.pyc | |
PLAYBOOK: add_disks.yml ******************************************************** | |
1 plays in tasks/add_disks.yml | |
PLAY [Reconfigure VM Filesystem] *********************************************** | |
TASK [Reconfigure Reconfigure VM Filesystem] *********************************** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# This playbook assumes the WebSphere MQ file provided by IBM has already been | |
# downloaded to a specific directory (target.wd) on the server. | |
# | |
# ${target.wd} is a variable representing the working directory on the target | |
# server the MQ client will be installed. | |
# | |
# Note: Although this playbook is designed to be able to be run independently, | |
# it is in fact part of a longer playbook and therefore may have some other | |
# unexpected dependencies not reflected here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"builders": [ | |
{ | |
"boot_command": [ | |
"<tab> text ks=http://{{ .HTTPIP }}:{{ .HTTPPort }}/{{user `ks_path`}}<enter><wait>" | |
], | |
"boot_wait": "10s", | |
"disk_size": 81920, | |
"http_directory": "http", | |
"iso_checksum": "{{user `iso_checksum`}}", |