Skip to content

Instantly share code, notes, and snippets.

@mg186050
mg186050 / envoy.json
Last active February 4, 2022 19:36 — forked from bbalfaro/envoy.json
{
"listeners": [
{
"address": "tcp://0.0.0.0:1010",
"filters": [
{
"type": "read",
"name": "http_connection_manager",
"config": {
"access_log": [
@mg186050
mg186050 / .gitlab-ci.yml
Created July 23, 2020 10:48 — forked from superjose/.gitlab-ci.yml
This is an example of a .gitlab-ci.yml that is required for Continuous Integration on GitLab projects.
# Reference: https://www.exclamationlabs.com/blog/continuous-deployment-to-npm-using-gitlab-ci/
# GitLab uses docker in the background, so we need to specify the
# image versions. This is useful because we're freely to use
# multiple node versions to work with it. They come from the docker
# repo.
# Uses NodeJS V 9.4.0
image: node:9.4.0
# And to cache them as well.