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
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. |
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
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 |
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
function toggleMenu () { | |
~/.dotfiles/bin/toggleMenuBigSur.sh | |
} |
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
version: '2' | |
services: | |
selenium_hub: | |
image: selenium/hub:latest | |
ports: | |
- 4444:4444 | |
environment: | |
- SE_OPTS=-debug | |
- GRID_MAX_SESSION=5 |
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
#!/bin/bash | |
### Setup AppGateway V2 w/ multi namespace support | |
resourceGroup=jdk8s | |
k8sVnet=jdk8sVnet | |
appgwName=jdk8sappgw | |
appgwPublicIpName=appgwjdIP | |
# create dedicated appgateway vnet subnet |
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
# 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" |
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
#!/bin/bash | |
set -eou pipefail | |
# Change varaibles below as needed | |
rg=myresourcegroup | |
location=eastus | |
blobStoreName=jdh3 | |
containerName=helm | |
helmRepoName=jdhelm | |
# End variable declaration |
- kubectl create secret docker-registry secret-name-here --docker-server=docker-server-here --docker-username=username --docker-password=password --namespace=namespace
- values: image: repository: registry-address-here/repo-name-here tag: tag-here pullPolicy: IfNotPresent imagePullSecrets:
NewerOlder