Skip to content

Instantly share code, notes, and snippets.

View ConnorDoyle's full-sized avatar
💫

Connor Doyle ConnorDoyle

💫
View GitHub Profile

Kubernetes CPU manager block diagram

Keybase proof

I hereby claim:

  • I am connordoyle on github.
  • I am connordoyle (https://keybase.io/connordoyle) on keybase.
  • I have a public key ASC7UYY3MDeLVJhfIGtocXNKpBokJ5R7mAbYygvTWp9onQo

To claim this, I am signing this object:

test

link

link

[link](#test)

table with code

Extended resource isolation demo

Start a local cluater

sudo KUBELET_FLAGS="--enable-extended-isolation --node-labels=cgroup-cpuset-cpus-isolator=enabled" ./hack/local-up-cluster.sh

Build the cpuset isolator image

This file has been truncated, but you can view the full file.
diff --git a/cmd/clicheck/BUILD b/cmd/clicheck/BUILD
index ef7b030..5ece52a 100644
--- a/cmd/clicheck/BUILD
+++ b/cmd/clicheck/BUILD
@@ -14,9 +14,4 @@ go_binary(
name = "clicheck",
srcs = ["check_cli_conventions.go"],
tags = ["automanaged"],
- deps = [
- "//pkg/kubectl/cmd:go_default_library",
v bv b bb mb v bhhnby hnv bcgvvfsfxb v rfygyrghrf b g b v nb u vv bnvxx vv v h
diff --git a/include/mesos/mesos.proto b/include/mesos/mesos.proto
index 4a16be1..8181f3c 100644
--- a/include/mesos/mesos.proto
+++ b/include/mesos/mesos.proto
@@ -1351,13 +1351,17 @@ message Volume {
* Describes a network request by framework as well as network resolution
* provided by the the executor or Agent.
*
- * A framework may request the network isolator on the Agent to assign an IP
- * address to the container being launched. Alternatively, it can provide a
@ConnorDoyle
ConnorDoyle / libprocess_queues.py
Created August 28, 2015 16:16
libprocess_queues.py
import httplib
import json
import prettytable
import sys
def fetch_list(master):
con = httplib.HTTPConnection(master)
con.request("GET", "/__processes__")
return json.loads(con.getresponse().read())
@ConnorDoyle
ConnorDoyle / install-dcos-cli.sh
Last active August 29, 2015 14:15
DCOS CLI Installer
#!/bin/bash
set -o errexit -o pipefail
BUILD_DIR='/tmp/dcos-cli/build'
echo "Setting up build directory..."
echo ""
mkdir -p $BUILD_DIR