This file contains hidden or 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: moby-counter-frontend | |
| labels: | |
| app: moby-counter | |
| tier: frontend | |
| spec: | |
| type: NodePort | |
| ports: |
This file contains hidden or 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
| - name: Add russ.mckendrick user | |
| win_user: | |
| name: russ.mckendrick | |
| password: "mymegasecurepassword" | |
| groups: ["Users", "Administrators"] | |
| - name: Install Git with Chocolatey | |
| win_chocolatey: | |
| name: "{{ item }}" | |
| with_items: |
This file contains hidden or 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
| version: "3" | |
| services: | |
| minio1: | |
| image: minio/minio | |
| ports: | |
| - "9000:9000" | |
| networks: | |
| - minionet |
This file contains hidden or 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
| version: "3" | |
| services: | |
| traefik: | |
| image: traefik | |
| command: --web --docker --docker.domain=local.media-glass.es --docker.watch --logLevel=DEBUG | |
| networks: | |
| - scale | |
| ports: | |
| - "80:80" |
This file contains hidden or 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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| VAGRANTFILE_API_VERSION = "2" | |
| Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
| config.vm.box = "centos/7" | |
| config.vm.provider :virtualbox do |v| | |
| v.memory = 4048 | |
| v.cpus = 2 |
This file contains hidden or 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
| version: '3.3' | |
| services: | |
| web: | |
| build: web | |
| image: dockerdemos/lab-web | |
| volumes: | |
| - "./web/static:/static" | |
| ports: | |
| - "80:80" |
This file contains hidden or 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
| module "application-rg" { | |
| source = "modules/vnet" | |
| name = "${var.resource_group_name}" | |
| location = "${var.location}" | |
| tags = "${merge(var.default_tags, map("type","resource"))}" | |
| } | |
| module "application-vnet" { | |
| source = "modules/vnet" | |
| resource_group_name = "${module.application-rg.rg_name}" |
This file contains hidden or 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
| # initialization file (not found) |
This file contains hidden or 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
| - name: Create a Azure Private DNS zone using Ansible | |
| hosts: localhost | |
| connection: local | |
| gather_facts: true | |
| vars: | |
| resource_group: "myResourceGroup" | |
| location: "uksouth" | |
| network: | |
| name: "iac-vnet" |
This file contains hidden or 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
| trigger: | |
| - master | |
| pool: | |
| vmImage: 'ubuntu-latest' |