Skip to content

Instantly share code, notes, and snippets.

View ironcladlou's full-sized avatar

Dan Mace ironcladlou

View GitHub Profile
@ironcladlou
ironcladlou / create-libvirt.sh
Created November 1, 2018 11:43
OpenShift 4.0 installer on GCP
#/bin/bash
NAME="$1"
if [ -z "$NAME" ]; then
echo "usage: create-libvirt.sh <name>"
exit 1
fi
CLUSTER_DIR="$HOME/clusters/${NAME}"
if [ -d "$CLUSTER_DIR" ]; then
@ironcladlou
ironcladlou / Vagrantfile
Last active May 22, 2019 07:58
OpenShift 4.0 Installer on macOS
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "generic/fedora28"
config.vm.network "public_network"
config.vm.synced_folder ".", "/vagrant", type: "nfs"
config.vm.provider "vmware_desktop" do |v|
v.ssh_info_public = true
v.vmx["numvcpus"] = "2"
@ironcladlou
ironcladlou / local-release.sh
Last active October 16, 2018 18:10
Testing cluster-ingress-operator without CVO
#/bin/bash
set -euo pipefail
REPO="$1"
if [ -z "$REPO" ]; then
echo "usage: local-release.sh <repo>"
exit 1
fi
@ironcladlou
ironcladlou / local-release.sh
Last active October 15, 2018 14:33
Testing cluster-dns-operator without CVO
#/bin/bash
set -euo pipefail
# usage: local-release.sh <repo>
# Tags a new image from local working tree, makes a temporary commit,
# pushes it to $repo, builds a temporary set of manifests replacing the
# deployment with the $repo pullspec.
REPO="$1"
@ironcladlou
ironcladlou / zz_vars.yaml
Created August 20, 2018 20:45
Cluster Ingress Operator test environment
openshift_gcp_node_group_config:
- name: master
suffix: m
tags: ocp-master,ocp-node
machine_type: n1-standard-1
boot_disk_size: 150
scale: 1
bootstrap: true
wait_for_stable: true
- name: infra
---
- hosts: localhost
connection: local
tasks:
- name: place all scale groups into Ansible groups
include_role:
name: openshift_gcp
tasks_from: setup_scale_group_facts.yml
- import_playbook: ../init/main.yml
@ironcladlou
ironcladlou / monitoring-devel.md
Last active April 26, 2018 15:02
OpenShift Monitoring Development

Monitoring platform development

To launch a cluster with the the monitoring platform installed, set up a GCE cluster using its instructions, and enable the monitoring platform before bringing up your cluster by adding gcp-dev/myvars.yaml:

openshift_monitoring_deploy: true
# openshift_cluster_monitoring_operator_image: quay.io/dmace/cluster-monitoring-operator:7c7e214

# openshift_cluster_monitoring_operator_alertmanager_config: |+
#   global:
@ironcladlou
ironcladlou / settings.json
Created February 15, 2018 14:18
VSCode User Settings
// Place your settings in this file to overwrite the default settings
{
"window.newWindowDimensions": "maximized",
"editor.fontFamily": "Monaco",
"editor.fontSize": 14,
"editor.tabSize": 2,
"files.autoSave": "off",
"editor.selectionHighlight": false,
"editor.quickSuggestions": false,
"editor.suggestOnTriggerCharacters": false,
@ironcladlou
ironcladlou / settings.json
Created February 14, 2018 17:26
Health Check App VSCode settings
{
"files.exclude": {
"_output": true,
".tito": true,
},
"go.testTimeout": "5s",
"go.goroot": "/Users/dan/.go/dist/go1.9.4",
"go.toolsGopath": "/Users/dan/Projects/monitor-project-lifecycle",
"go.gopath": "/Users/dan/Projects/monitor-project-lifecycle"
}
#!/bin/bash
# REQUIRES: https://github.com/coreos/prometheus-operator/pull/986
OPERATOR=$HOME/Projects/prometheus-operator/src/github.com/coreos/prometheus-operator
oc login -u system:admin
oc new-project monitoring
oc apply -f $OPERATOR/contrib/kube-prometheus/manifests/prometheus-operator