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 | |
######################################################################### | |
# Usage: unsuspend-cronjobs.sh <namespace> | |
# Unsuspends cronjobs in a namespace | |
######################################################################### | |
if ! command -v kubectl &> /dev/null | |
then | |
echo "kubectl must be present in order to run this script" | |
exit 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
#!/bin/bash | |
######################################################################### | |
# Usage: suspend-cronjobs.sh <namespace> | |
# Suspends cronjobs in a namespace | |
######################################################################### | |
if ! command -v kubectl &> /dev/null | |
then | |
echo "kubectl must be present in order to run this script" | |
exit 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
#!/usr/bin/env bash | |
##################################################################### | |
# This script dumps all resources in a cluster to yaml files | |
# Usage: ./dump-cluster-as-yaml.sh KUBE-CONTEXT | |
# Example: ./dump-cluster-as-yaml.sh $(kubectl config current-context) | |
##################################################################### | |
set -e | |
CONTEXT="$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 main | |
import ( | |
"bufio" | |
"fmt" | |
"log" | |
"net" | |
"strings" | |
"time" | |
) |
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: troubleshoot.sh/v1beta3 | |
kind: HostPreflight | |
metadata: | |
name: kurl-builtin | |
spec: | |
collectors: | |
- cpu: {} | |
- memory: {} | |
- tcpPortStatus: | |
collectorName: "Kubernetes API TCP Port Status" |
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
function parse_git_branch { | |
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ \[\1\]/' | |
} | |
function proml { | |
local BLUE="\[\033[0;34m\]" | |
local LIGHT_GREEN="\[\033[1;32m\]" | |
local DEFAULT="\[\033[0m\]" | |
PS1="\h:\W \u$LIGHT_GREEN\$(parse_git_branch) $DEFAULT\$ " | |
} |
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 main | |
import ( | |
"crypto" | |
"crypto/rsa" | |
"crypto/ecdsa" | |
"crypto/sha256" | |
"crypto/x509" | |
"encoding/pem" | |
"math/big" |
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
func (d *Datastore) searchLabelsWithOmits(query string, omit ...uint) ([]kolide.Label, error) { | |
sqlStatement := ` | |
SELECT * | |
FROM labels | |
WHERE MATCH(name) | |
AGAINST(? IN BOOLEAN MODE) | |
AND NOT deleted | |
AND id NOT IN (?) | |
LIMIT 10 | |
` |
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 kolide | |
import ( | |
"time" | |
"github.com/WatchBeam/clock" | |
) | |
type Createable interface { | |
MarkCreated(clock.Clock) |
NewerOlder