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
static_resources: | |
listeners: | |
- name: listener_0 | |
address: | |
socket_address: | |
address: 0.0.0.0 | |
port_value: 10000 | |
filter_chains: | |
- filters: | |
- name: envoy.http_connection_manager |
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
domain: apis | |
descriptors: | |
- key: generic_key | |
value: global | |
rate_limit: | |
unit: second | |
requests_per_unit: 60 | |
- key: generic_key | |
value: local | |
rate_limit: |
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
{ | |
"appConfig": {}, | |
"expectedArtifacts": [], | |
"keepWaitingPipelines": false, | |
"lastModifiedBy": "[email protected]", | |
"limitConcurrent": false, | |
"parameterConfig": [], | |
"stages": [ | |
{ | |
"account": "k8-staging-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
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: nginx | |
--- | |
apiVersion: extensions/v1beta1 | |
kind: Deployment | |
metadata: | |
namespace: nginx | |
name: nginx-deployment |
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
TAG=1.7-SNAPSHOT | |
ACTION=DEPLOY |
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 | |
#Author: Vaibhav Thakur | |
#Checking whether commit was in master of not. | |
if_master=`echo $payload | jq '.ref' | grep master` | |
if [ $? -eq 1 ]; then | |
echo "Pipeline should not be triggered" | |
exit 2 | |
fi |
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
{ | |
"containerDefinitions": [ | |
{ | |
"memory": 600, | |
"portMappings": [ | |
{ | |
"hostPort": 0, | |
"containerPort": 3000, | |
"protocol": "tcp" | |
}, |
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
{ | |
"containerDefinitions": [ | |
{ | |
"memory": 600, | |
"portMappings": [ | |
{ | |
"hostPort": 0, | |
"containerPort": 3000, | |
"protocol": "tcp" | |
}, |
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
{ | |
"containerDefinitions": [ | |
{ | |
"memory": 600, | |
"portMappings": [ | |
{ | |
"hostPort": 0, | |
"containerPort": 3000, | |
"protocol": "tcp" | |
}, |
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
#All the environment variables are defined under Settings > CI/CD > Secret Variables section | |
image: docker:latest | |
variables: | |
DOCKER_DRIVER: overlay2 | |
services: | |
- docker:dind | |
stages: | |
- build_dev |
NewerOlder