Visual Testing and CI/CD Best Practices
Angie Jones and Jessica Deen
WithMicrosoft Open Source Home Page
AWSTemplateFormatVersion: 2010-09-09 | |
Description: > | |
This template provisions the infrastructure and deploys the Fargate services for use with the YELB sample application and Service Connect migration blog post. | |
Parameters: | |
StackName: | |
Type: String | |
Default: yelb-serviceconnect | |
Description: The name of the parent Fargate networking stack you created. Necessary to locate and reference resources created by said stack. |
version: '3.8' | |
services: | |
db: | |
image: mysql:5.7 | |
restart: always | |
environment: | |
# Fetching the password from the application settings | |
MYSQL_ROOT_PASSWORD: ${DATABASE_ROOT_PASSWORD} | |
MYSQL_DATABASE: ghost |
function toggleMenu () { | |
~/.dotfiles/bin/toggleMenuBigSur.sh | |
} |
Microsoft Open Source Home Page
version: '2' | |
services: | |
selenium_hub: | |
image: selenium/hub:latest | |
ports: | |
- 4444:4444 | |
environment: | |
- SE_OPTS=-debug | |
- GRID_MAX_SESSION=5 |
#!/bin/bash | |
### Setup AppGateway V2 w/ multi namespace support | |
resourceGroup=jdk8s | |
k8sVnet=jdk8sVnet | |
appgwName=jdk8sappgw | |
appgwPublicIpName=appgwjdIP | |
# create dedicated appgateway vnet subnet |
# Includes complete Jenkins configuration in order to run croc-hunter pipeline | |
# To install on your own cluster, run: | |
# helm --namespace jenkins --name jenkins -f ./jenkins-values.yaml install stable/jenkins | |
master: | |
tag: "2.164.2" | |
resources: | |
requests: | |
cpu: "50m" | |
memory: "256Mi" |
#!/bin/bash | |
set -eou pipefail | |
# Change varaibles below as needed | |
rg=myresourcegroup | |
location=eastus | |
blobStoreName=jdh3 | |
containerName=helm | |
helmRepoName=jdhelm | |
# End variable declaration |
Microsoft Open Source Home Page