├── .DS_Store ├── .env.example ├── .env.testing.example ├── .gitignore ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.example.json ├── bosh.md ├── docs ├── ad_fs.ps1 ├── additional_VM_TYPES.md ├── advanced.md ├── apps_man_saml_aad.md ├── cloudshell.md ├── opsman_uaac_aad.md ├── patched_terraform.md └── todo.md ├── env ├── apm │ └── 1.6.0 │ │ └── apm.env ├── kubernetes-service-manager │ └── 0.4.34 │ │ └── kubernetes-service-manager.env ├── masb │ └── 1.11.0 │ │ └── masb.env ├── p-compliance-scanner │ └── 1.0.0-beta.7 │ │ └── p-compliance-scanner.env ├── p-healthwatch │ ├── 1.4.5 │ │ └── healthwatch.env │ └── 1.5.2 │ │ └── p-healthwatch.env ├── p-isolation-segment │ └── 2.5.2 │ │ └── p-isolation-segment.env ├── p-rabbitmq │ ├── 1.15.3 │ │ └── rabbit.env │ ├── 1.15.4 │ │ └── p-rabbitmq.env │ ├── 1.15.7 │ │ └── p-rabbitmq.env │ └── 1.16.3 │ │ └── p-rabbitmq.env ├── p-spring-services │ ├── 2.0.5 │ │ └── spring.env │ ├── 2.0.6 │ │ └── spring.env │ ├── 2.0.7 │ │ └── p-spring-services.env │ ├── 2.0.8 │ │ └── p-spring-services.env │ └── 2.0.9 │ │ └── p-spring-services.env ├── pas-windows │ ├── 2.4.3 │ │ └── pas-windows.env │ ├── 2.4.4 │ │ └── pas-windows.env │ ├── 2.5.0 │ │ └── pas-windows.env │ ├── 2.5.1 │ │ └── pas-windows.env │ └── 2.5.2 │ │ └── pas-windows.env ├── pas │ ├── 2.4.0 │ │ └── pas.env │ ├── 2.4.1 │ │ └── pas.env │ ├── 2.4.2 │ │ └── pas.env │ ├── 2.4.3 │ │ └── pas.env │ ├── 2.4.4 │ │ └── pas.env │ ├── 2.5.0 │ │ └── pas.env │ ├── 2.5.1 │ │ └── pas.env │ ├── 2.5.2 │ │ └── pas.env │ ├── 2.5.3 │ │ └── pas.env │ ├── 2.5.4 │ │ └── pas.env │ └── 2.5.5 │ │ └── pas.env ├── pivotal-mysql │ ├── 2.5.3 │ │ └── pivotal-mysql.env │ └── 2.5.4 │ │ └── pivotal-mysql.env ├── pivotal_single_sign-on_service │ └── 1.8.3 │ │ └── pivotal_single_sign-on_service.env └── updates.txt ├── generate-customdata.json ├── patches ├── modules │ └── pas │ │ ├── dns.tf │ │ ├── istiolb.tf │ │ └── outputs.tf └── outputs.tf ├── root_ca_certificate ├── scripts ├── cf_startstop.sh ├── connect_om.sh ├── create_certs.sh ├── create_self_certs.sh ├── deploy_base.sh ├── deploy_masb.sh ├── deploy_p-compliance-scanner.sh ├── deploy_pas.sh ├── deploy_tile.sh ├── old │ ├── deploy_mysql.sh │ ├── deploy_osba.sh │ ├── deploy_rabbit.sh │ └── deploy_spring.sh ├── om_init.sh ├── skeleton.sh ├── stemcell_loader.sh ├── update.sh ├── update_bosh_director.sh └── updates.txt ├── sendgrid.md ├── templates ├── apm │ └── 1.6.0 │ │ └── apm.yaml ├── director_config.yaml ├── kubernetes-service-manager │ └── 0.4.34 │ │ └── kubernetes-service-manager.yaml ├── masb │ └── 1.11.0 │ │ └── masb.yaml ├── old │ ├── network_pas.yaml │ ├── network_pas_services.yaml │ ├── network_pas_services_zones.yaml │ ├── network_pas_zones.yaml │ ├── pas-cf.yaml │ ├── pas-srt.yaml │ └── spring.yaml ├── p-compliance-scanner │ └── 1.0.0-beta.7 │ │ └── p-compliance-scanner.yaml ├── p-healthwatch │ ├── 1.4.5 │ │ └── p-healthwatch.yaml │ └── 1.5.2 │ │ └── p-healthwatch.yaml ├── p-isolation-segment │ └── 2.5.2 │ │ └── p-isolation-segment.yaml ├── p-rabbitmq │ ├── 1.15.4 │ │ └── p-rabbitmq.yaml │ ├── 1.15.7 │ │ └── p-rabbitmq.yaml │ └── 1.16.3 │ │ └── p-rabbitmq.yaml ├── p-spring-services │ ├── 2.0.7 │ │ └── p-spring-services.yaml │ ├── 2.0.8 │ │ └── p-spring-services.yaml │ └── 2.0.9 │ │ └── p-spring-services.yaml ├── pas-windows │ ├── 2.4.3 │ │ └── pas-windows.yaml │ ├── 2.4.4 │ │ └── pas-windows.yaml │ ├── 2.5.0 │ │ └── pas-windows.yaml │ ├── 2.5.1 │ │ └── pas-windows.yaml │ └── 2.5.2 │ │ └── pas-windows.yaml ├── pas │ ├── 2.5.0 │ │ ├── pas-cf.yaml │ │ └── pas-srt.yaml │ ├── 2.5.1 │ │ ├── pas-cf.yaml │ │ └── pas-srt.yaml │ ├── 2.5.2 │ │ ├── pas-cf.yaml │ │ └── pas-srt.yaml │ ├── 2.5.3 │ │ ├── pas-cf.yaml │ │ └── pas-srt.yaml │ ├── 2.5.4 │ │ ├── pas-cf.yaml │ │ └── pas-srt.yaml │ └── 2.5.5 │ │ ├── pas-cf.yaml │ │ └── pas-srt.yaml ├── pivotal-mysql │ ├── 2.5.3 │ │ └── pivotal-mysql.yaml │ └── 2.5.4 │ │ └── pivotal-mysql.yaml ├── pivotal_single_sign-on_service │ └── 1.8.3 │ │ └── pivotal_single_sign-on_service.yaml └── updates.txt └── testing.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/.DS_Store -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/.env.example -------------------------------------------------------------------------------- /.env.testing.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/.env.testing.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/README.md -------------------------------------------------------------------------------- /azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/azuredeploy.json -------------------------------------------------------------------------------- /azuredeploy.parameters.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/azuredeploy.parameters.example.json -------------------------------------------------------------------------------- /bosh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/bosh.md -------------------------------------------------------------------------------- /docs/ad_fs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/docs/ad_fs.ps1 -------------------------------------------------------------------------------- /docs/additional_VM_TYPES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/docs/additional_VM_TYPES.md -------------------------------------------------------------------------------- /docs/advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/docs/advanced.md -------------------------------------------------------------------------------- /docs/apps_man_saml_aad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/docs/apps_man_saml_aad.md -------------------------------------------------------------------------------- /docs/cloudshell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/docs/cloudshell.md -------------------------------------------------------------------------------- /docs/opsman_uaac_aad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/docs/opsman_uaac_aad.md -------------------------------------------------------------------------------- /docs/patched_terraform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/docs/patched_terraform.md -------------------------------------------------------------------------------- /docs/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/docs/todo.md -------------------------------------------------------------------------------- /env/apm/1.6.0/apm.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_VERSION="1.6.0" 3 | RELEASE_ID="258338" 4 | PRODUCT_SLUG="apm" -------------------------------------------------------------------------------- /env/kubernetes-service-manager/0.4.34/kubernetes-service-manager.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_VERSION="0.4.34" 3 | RELEASE_ID="318278" 4 | PRODUCT_SLUG="kubernetes-service-manager" -------------------------------------------------------------------------------- /env/masb/1.11.0/masb.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_OSBA_VERSION="1.11.0" 3 | RELEASE_ID="282392" 4 | PRODUCT_SLUG="azure-service-broker" -------------------------------------------------------------------------------- /env/p-compliance-scanner/1.0.0-beta.7/p-compliance-scanner.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_VERSION="1.0.0-beta.7" 3 | RELEASE_ID="258167" 4 | PRODUCT_SLUG="p-compliance-scanner" -------------------------------------------------------------------------------- /env/p-healthwatch/1.4.5/healthwatch.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_VERSION="1.4.5" 3 | RELEASE_ID="295426" 4 | PRODUCT_SLUG="p-healthwatch" -------------------------------------------------------------------------------- /env/p-healthwatch/1.5.2/p-healthwatch.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_VERSION="1.5.2" 3 | RELEASE_ID="333641" 4 | PRODUCT_SLUG="p-healthwatch" -------------------------------------------------------------------------------- /env/p-isolation-segment/2.5.2/p-isolation-segment.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_VERSION="2.5.2" 3 | RELEASE_ID="344819" 4 | PRODUCT_SLUG="p-isolation-segment" 5 | -------------------------------------------------------------------------------- /env/p-rabbitmq/1.15.3/rabbit.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_RABBIT_VERSION="1.15.3" 3 | RELEASE_ID="265855" 4 | PRODUCT_SLUG="p-rabbitmq" -------------------------------------------------------------------------------- /env/p-rabbitmq/1.15.4/p-rabbitmq.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_VERSION="1.15.4" 3 | RELEASE_ID="301765" 4 | PRODUCT_SLUG="p-rabbitmq" -------------------------------------------------------------------------------- /env/p-rabbitmq/1.15.7/p-rabbitmq.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_VERSION="1.15.7" 3 | RELEASE_ID="333454" 4 | PRODUCT_SLUG="p-rabbitmq" -------------------------------------------------------------------------------- /env/p-rabbitmq/1.16.3/p-rabbitmq.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_VERSION="1.16.3" 3 | RELEASE_ID="371338" 4 | PRODUCT_SLUG="p-rabbitmq" -------------------------------------------------------------------------------- /env/p-spring-services/2.0.5/spring.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/env/p-spring-services/2.0.5/spring.env -------------------------------------------------------------------------------- /env/p-spring-services/2.0.6/spring.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_SPRING_VERSION="2.0.6" 3 | RELEASE_ID="297181" 4 | PRODUCT_SLUG="p-spring-cloud-services" -------------------------------------------------------------------------------- /env/p-spring-services/2.0.7/p-spring-services.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_VERSION="2.0.7" 3 | RELEASE_ID="313492" 4 | PRODUCT_SLUG="p-spring-cloud-services" -------------------------------------------------------------------------------- /env/p-spring-services/2.0.8/p-spring-services.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_VERSION="2.0.8" 3 | RELEASE_ID="364201" 4 | PRODUCT_SLUG="p-spring-cloud-services" -------------------------------------------------------------------------------- /env/p-spring-services/2.0.9/p-spring-services.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_VERSION="2.0.9" 3 | RELEASE_ID="374551" 4 | PRODUCT_SLUG="p-spring-cloud-services" -------------------------------------------------------------------------------- /env/pas-windows/2.4.3/pas-windows.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_VERSION="2.4.3" 3 | RELEASE_ID="311531" 4 | PRODUCT_SLUG="pas-windows" -------------------------------------------------------------------------------- /env/pas-windows/2.4.4/pas-windows.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_VERSION="2.4.4" 3 | RELEASE_ID="323871" 4 | PRODUCT_SLUG="pas-windows" -------------------------------------------------------------------------------- /env/pas-windows/2.5.0/pas-windows.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_VERSION="2.5.0" 3 | RELEASE_ID="326896" 4 | PRODUCT_SLUG="pas-windows" -------------------------------------------------------------------------------- /env/pas-windows/2.5.1/pas-windows.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_VERSION="2.5.1" 3 | RELEASE_ID="360652" 4 | PRODUCT_SLUG="pas-windows" -------------------------------------------------------------------------------- /env/pas-windows/2.5.2/pas-windows.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_VERSION="2.5.2" 3 | RELEASE_ID="373821" 4 | PRODUCT_SLUG="pas-windows" -------------------------------------------------------------------------------- /env/pas/2.4.0/pas.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_PAS_VERSION="2.4.0" 3 | RELEASE_ID="246998" 4 | PRODUCT_SLUG="elastic-runtime" 5 | -------------------------------------------------------------------------------- /env/pas/2.4.1/pas.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_PAS_VERSION="2.4.1" 3 | RELEASE_ID="259105" 4 | PRODUCT_SLUG="elastic-runtime" -------------------------------------------------------------------------------- /env/pas/2.4.2/pas.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_PAS_VERSION="2.4.2" 3 | RELEASE_ID="281703" 4 | PRODUCT_SLUG="elastic-runtime" -------------------------------------------------------------------------------- /env/pas/2.4.3/pas.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_PAS_VERSION="2.4.3" 3 | RELEASE_ID="297394" 4 | PRODUCT_SLUG="elastic-runtime" -------------------------------------------------------------------------------- /env/pas/2.4.4/pas.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_PAS_VERSION="2.4.4" 3 | RELEASE_ID="309043" 4 | PRODUCT_SLUG="elastic-runtime" -------------------------------------------------------------------------------- /env/pas/2.5.0/pas.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_PAS_VERSION="2.5.0" 3 | RELEASE_ID="327873" 4 | PRODUCT_SLUG="elastic-runtime" -------------------------------------------------------------------------------- /env/pas/2.5.1/pas.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_PAS_VERSION="2.5.1" 3 | RELEASE_ID="339101" 4 | PRODUCT_SLUG="elastic-runtime" -------------------------------------------------------------------------------- /env/pas/2.5.2/pas.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_PAS_VERSION="2.5.2" 3 | RELEASE_ID="347828" 4 | PRODUCT_SLUG="elastic-runtime" -------------------------------------------------------------------------------- /env/pas/2.5.3/pas.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_PAS_VERSION="2.5.3" 3 | RELEASE_ID="363705" 4 | PRODUCT_SLUG="elastic-runtime" -------------------------------------------------------------------------------- /env/pas/2.5.4/pas.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_PAS_VERSION="2.5.4" 3 | RELEASE_ID="366062" 4 | PRODUCT_SLUG="elastic-runtime" -------------------------------------------------------------------------------- /env/pas/2.5.5/pas.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_PAS_VERSION="2.5.5" 3 | RELEASE_ID="390763" 4 | PRODUCT_SLUG="elastic-runtime" -------------------------------------------------------------------------------- /env/pivotal-mysql/2.5.3/pivotal-mysql.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_VERSION="2.5.3" 3 | RELEASE_ID="276445" 4 | PRODUCT_SLUG="pivotal-mysql" -------------------------------------------------------------------------------- /env/pivotal-mysql/2.5.4/pivotal-mysql.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_VERSION="2.5.4" 3 | RELEASE_ID="348862" 4 | PRODUCT_SLUG="pivotal-mysql" -------------------------------------------------------------------------------- /env/pivotal_single_sign-on_service/1.8.3/pivotal_single_sign-on_service.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PCF_VERSION="1.8.3" 3 | RELEASE_ID="347051" 4 | PRODUCT_SLUG="pivotal_single_sign-on_service" -------------------------------------------------------------------------------- /env/updates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/env/updates.txt -------------------------------------------------------------------------------- /generate-customdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/generate-customdata.json -------------------------------------------------------------------------------- /patches/modules/pas/dns.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/patches/modules/pas/dns.tf -------------------------------------------------------------------------------- /patches/modules/pas/istiolb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/patches/modules/pas/istiolb.tf -------------------------------------------------------------------------------- /patches/modules/pas/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/patches/modules/pas/outputs.tf -------------------------------------------------------------------------------- /patches/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/patches/outputs.tf -------------------------------------------------------------------------------- /root_ca_certificate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/root_ca_certificate -------------------------------------------------------------------------------- /scripts/cf_startstop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/scripts/cf_startstop.sh -------------------------------------------------------------------------------- /scripts/connect_om.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/scripts/connect_om.sh -------------------------------------------------------------------------------- /scripts/create_certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/scripts/create_certs.sh -------------------------------------------------------------------------------- /scripts/create_self_certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/scripts/create_self_certs.sh -------------------------------------------------------------------------------- /scripts/deploy_base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/scripts/deploy_base.sh -------------------------------------------------------------------------------- /scripts/deploy_masb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/scripts/deploy_masb.sh -------------------------------------------------------------------------------- /scripts/deploy_p-compliance-scanner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/scripts/deploy_p-compliance-scanner.sh -------------------------------------------------------------------------------- /scripts/deploy_pas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/scripts/deploy_pas.sh -------------------------------------------------------------------------------- /scripts/deploy_tile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/scripts/deploy_tile.sh -------------------------------------------------------------------------------- /scripts/old/deploy_mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/scripts/old/deploy_mysql.sh -------------------------------------------------------------------------------- /scripts/old/deploy_osba.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/scripts/old/deploy_osba.sh -------------------------------------------------------------------------------- /scripts/old/deploy_rabbit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/scripts/old/deploy_rabbit.sh -------------------------------------------------------------------------------- /scripts/old/deploy_spring.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/scripts/old/deploy_spring.sh -------------------------------------------------------------------------------- /scripts/om_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/scripts/om_init.sh -------------------------------------------------------------------------------- /scripts/skeleton.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/scripts/skeleton.sh -------------------------------------------------------------------------------- /scripts/stemcell_loader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/scripts/stemcell_loader.sh -------------------------------------------------------------------------------- /scripts/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/scripts/update.sh -------------------------------------------------------------------------------- /scripts/update_bosh_director.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/scripts/update_bosh_director.sh -------------------------------------------------------------------------------- /scripts/updates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/scripts/updates.txt -------------------------------------------------------------------------------- /sendgrid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/sendgrid.md -------------------------------------------------------------------------------- /templates/apm/1.6.0/apm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/apm/1.6.0/apm.yaml -------------------------------------------------------------------------------- /templates/director_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/director_config.yaml -------------------------------------------------------------------------------- /templates/kubernetes-service-manager/0.4.34/kubernetes-service-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/kubernetes-service-manager/0.4.34/kubernetes-service-manager.yaml -------------------------------------------------------------------------------- /templates/masb/1.11.0/masb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/masb/1.11.0/masb.yaml -------------------------------------------------------------------------------- /templates/old/network_pas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/old/network_pas.yaml -------------------------------------------------------------------------------- /templates/old/network_pas_services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/old/network_pas_services.yaml -------------------------------------------------------------------------------- /templates/old/network_pas_services_zones.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/old/network_pas_services_zones.yaml -------------------------------------------------------------------------------- /templates/old/network_pas_zones.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/old/network_pas_zones.yaml -------------------------------------------------------------------------------- /templates/old/pas-cf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/old/pas-cf.yaml -------------------------------------------------------------------------------- /templates/old/pas-srt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/old/pas-srt.yaml -------------------------------------------------------------------------------- /templates/old/spring.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/old/spring.yaml -------------------------------------------------------------------------------- /templates/p-compliance-scanner/1.0.0-beta.7/p-compliance-scanner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/p-compliance-scanner/1.0.0-beta.7/p-compliance-scanner.yaml -------------------------------------------------------------------------------- /templates/p-healthwatch/1.4.5/p-healthwatch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/p-healthwatch/1.4.5/p-healthwatch.yaml -------------------------------------------------------------------------------- /templates/p-healthwatch/1.5.2/p-healthwatch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/p-healthwatch/1.5.2/p-healthwatch.yaml -------------------------------------------------------------------------------- /templates/p-isolation-segment/2.5.2/p-isolation-segment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/p-isolation-segment/2.5.2/p-isolation-segment.yaml -------------------------------------------------------------------------------- /templates/p-rabbitmq/1.15.4/p-rabbitmq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/p-rabbitmq/1.15.4/p-rabbitmq.yaml -------------------------------------------------------------------------------- /templates/p-rabbitmq/1.15.7/p-rabbitmq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/p-rabbitmq/1.15.7/p-rabbitmq.yaml -------------------------------------------------------------------------------- /templates/p-rabbitmq/1.16.3/p-rabbitmq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/p-rabbitmq/1.16.3/p-rabbitmq.yaml -------------------------------------------------------------------------------- /templates/p-spring-services/2.0.7/p-spring-services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/p-spring-services/2.0.7/p-spring-services.yaml -------------------------------------------------------------------------------- /templates/p-spring-services/2.0.8/p-spring-services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/p-spring-services/2.0.8/p-spring-services.yaml -------------------------------------------------------------------------------- /templates/p-spring-services/2.0.9/p-spring-services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/p-spring-services/2.0.9/p-spring-services.yaml -------------------------------------------------------------------------------- /templates/pas-windows/2.4.3/pas-windows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/pas-windows/2.4.3/pas-windows.yaml -------------------------------------------------------------------------------- /templates/pas-windows/2.4.4/pas-windows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/pas-windows/2.4.4/pas-windows.yaml -------------------------------------------------------------------------------- /templates/pas-windows/2.5.0/pas-windows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/pas-windows/2.5.0/pas-windows.yaml -------------------------------------------------------------------------------- /templates/pas-windows/2.5.1/pas-windows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/pas-windows/2.5.1/pas-windows.yaml -------------------------------------------------------------------------------- /templates/pas-windows/2.5.2/pas-windows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/pas-windows/2.5.2/pas-windows.yaml -------------------------------------------------------------------------------- /templates/pas/2.5.0/pas-cf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/pas/2.5.0/pas-cf.yaml -------------------------------------------------------------------------------- /templates/pas/2.5.0/pas-srt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/pas/2.5.0/pas-srt.yaml -------------------------------------------------------------------------------- /templates/pas/2.5.1/pas-cf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/pas/2.5.1/pas-cf.yaml -------------------------------------------------------------------------------- /templates/pas/2.5.1/pas-srt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/pas/2.5.1/pas-srt.yaml -------------------------------------------------------------------------------- /templates/pas/2.5.2/pas-cf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/pas/2.5.2/pas-cf.yaml -------------------------------------------------------------------------------- /templates/pas/2.5.2/pas-srt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/pas/2.5.2/pas-srt.yaml -------------------------------------------------------------------------------- /templates/pas/2.5.3/pas-cf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/pas/2.5.3/pas-cf.yaml -------------------------------------------------------------------------------- /templates/pas/2.5.3/pas-srt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/pas/2.5.3/pas-srt.yaml -------------------------------------------------------------------------------- /templates/pas/2.5.4/pas-cf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/pas/2.5.4/pas-cf.yaml -------------------------------------------------------------------------------- /templates/pas/2.5.4/pas-srt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/pas/2.5.4/pas-srt.yaml -------------------------------------------------------------------------------- /templates/pas/2.5.5/pas-cf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/pas/2.5.5/pas-cf.yaml -------------------------------------------------------------------------------- /templates/pas/2.5.5/pas-srt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/pas/2.5.5/pas-srt.yaml -------------------------------------------------------------------------------- /templates/pivotal-mysql/2.5.3/pivotal-mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/pivotal-mysql/2.5.3/pivotal-mysql.yaml -------------------------------------------------------------------------------- /templates/pivotal-mysql/2.5.4/pivotal-mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/pivotal-mysql/2.5.4/pivotal-mysql.yaml -------------------------------------------------------------------------------- /templates/pivotal_single_sign-on_service/1.8.3/pivotal_single_sign-on_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/pivotal_single_sign-on_service/1.8.3/pivotal_single_sign-on_service.yaml -------------------------------------------------------------------------------- /templates/updates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottkars/pcf-jump-azure/HEAD/templates/updates.txt -------------------------------------------------------------------------------- /testing.md: -------------------------------------------------------------------------------- 1 | master 2 | --------------------------------------------------------------------------------