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
name: Find LaunchDarkly flag code references | |
on: push | |
# cancel in-flight workflow run if another push was triggered | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
launchDarklyCodeReferences: | |
name: LaunchDarkly Code References | |
runs-on: ubuntu-latest |
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
job "frontend" { | |
datacenters = ["humblelabvm"] | |
group "frontend" { | |
network { | |
mode = "bridge" | |
port "web" { | |
to = 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
Consul Helm Chart | |
https://github.com/hashicorp/consul-helm | |
Consul Helm Chart Reference | |
https://consul.io/docs/platform/k8s/helm.html | |
Run Consul on Kubernetes - HashiCorp Learn | |
https://learn.hashicorp.com/consul?track=kubernetes#kubernetes | |
Getting Started with Consul Service Mesh - HashiCorp Learn |
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
kind: Cluster | |
apiVersion: kind.sigs.k8s.io/v1alpha3 | |
nodes: | |
- role: control-plane | |
- role: worker | |
- role: worker | |
- role: worker |
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
global: | |
# enabled is the master enabled switch. Setting this to true or false | |
# will enable or disable all the components within this chart by default. | |
# Each component can be overridden using the component-specific "enabled" | |
# value. | |
enabled: true | |
# Domain to register the Consul DNS server to listen for. | |
domain: consul |
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: apps/v1 # for k8s versions before 1.9.0 use apps/v1beta2 and before 1.8.0 use extensions/v1beta1 | |
kind: Deployment | |
metadata: | |
# This name uniquely identifies the Deployment | |
name: minio-deployment | |
spec: | |
selector: | |
matchLabels: | |
app: minio | |
strategy: |
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
name: Docker Host Build - Ubuntu | |
version: v2 | |
inputs: | |
username: | |
type: string | |
password: | |
type: string | |
encrypted: true | |
resources: | |
Cloud_Machine_1: |
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
name: CAS Expressions Demo | |
version: 4 | |
formatVersion: 1 | |
inputs: | |
environment: | |
type: string | |
enum: | |
- AWS | |
- vSphere | |
- Azure |
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
formatVersion: 1 | |
name: Wordpress 2.0 | |
version: 1 | |
inputs: | |
env: | |
type: string | |
title: Environment | |
description: Target Environment | |
oneOf: | |
- title: Dev |
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
### STAGE 1: Build ### | |
FROM node:10.10-alpine as builder | |
COPY package.json package-lock.json ./ | |
RUN npm i && mkdir /ng-app && cp -R ./node_modules ./ng-app | |
WORKDIR /ng-app |
NewerOlder