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
config = """global | |
log 127.0.0.1 local1 notice | |
chroot /var/lib/haproxy | |
user haproxy | |
group haproxy | |
daemon | |
stats socket /var/run/haproxysock level admin | |
defaults | |
log global |
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
Akamai does not serve an asset retrieval when client is in specific geographic regions. | |
Summing up this github issue: | |
https://github.com/videojs/videojs-contrib-hls/issues/1232 | |
If a client makes a request to player.vimeo.com a Geo-Country-Code http header is tagged onto this request. When the request with this Geo-Country-Code header gets to the player server it will evluate this and determine which CDN to return. We are experiencing an issue where a request for the same asset made from US (physical location) succeeds but made from a client in Latam fails. | |
A follow-up message informs us that removing the crossOrigin attribute from the video tag allows it to work. They go on to say that headers are not correct on the responses. | |
I do not have a method of attempting a true (physical) lookup from another physical\geo location. |
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
# GCE vimeo-logs shortcuts | |
# Images shortcuts | |
logs-lim() { gcloud --project vimeo-logs compute images list } | |
logs-rmim() { if [ $# -eq 0 ]; then echo "Deletes an image: [image-name]"; else | |
gcloud --project vimeo-logs compute images delete $1; fi } | |
# Instances shortcuts | |
logs-li() { gcloud --project vimeo-logs compute instances list } |
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
# GCE vimeo-logs shortcuts | |
# Images shortcuts | |
logs-lim() { gcloud --project vimeo-logs compute images list } | |
logs-rmim() { if [ $# -eq 0 ]; then echo "Deletes an image: [image-name]"; else | |
gcloud --project vimeo-logs compute images delete $1; fi } | |
# Instances shortcuts | |
logs-li() { gcloud --project vimeo-logs compute instances list } |
name: Release
on: push: tags: - v4.*
jobs: build-binaries:
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: Release | |
on: | |
push: | |
tags: | |
- v4.* | |
jobs: | |
build-binaries: |
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
provider "google" { | |
project = "cilium-dev" | |
region = "us-east4" | |
} | |
// create two vpc networks disconnected | |
// from one another. | |
resource "google_compute_network" "bgp_demo_network_1" { | |
name = "bgp-demo-network-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
package gobgp | |
import ( | |
"fmt" | |
v2alpha1api "github.com/cilium/cilium/pkg/k8s/apis/cilium.io/v2alpha1" | |
) | |
// workDiff is a helper structure which provides fields and a method set | |
// for computing a diff of work to achieve a given |
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 | |
# build and push the cilium dev agent image to | |
# a local repository at localhost:5000 | |
function cilium-agent-push { | |
if [ -z "${1}" ]; then | |
echo "tag not provided" | |
return | |
fi | |
cd /home/louis/git/gopath/src/github.com/cilium/cilium |
OlderNewer