Skip to content

Instantly share code, notes, and snippets.

View spiffxp's full-sized avatar
💭
I may be slow to respond.

Aaron Crickenberger spiffxp

💭
I may be slow to respond.
View GitHub Profile
#!/usr/bin/env bash
sed 's|/Users/USERNAME/Dropbox/Public|/http://dl.dropbox.com/u/3423/|g';
sed 's|file://localhost/Users/USERNAME/Dropbox/Public/|http://dl.dropbox.com/u/3423/|g';
sed 's|~/Dropbox/Public/|http://dl.dropbox.com/u/3423/|g';
sed 's|\.\.\/Public/|http://dl.dropbox.com/u/3423/|g';
@spiffxp
spiffxp / .bash_profile
Created December 7, 2012 21:47
My .bash_profile
# .bash_profile
# ls
export CLICOLOR=1
alias ll='ls -l'
alias la='ls -a'
# auto-completion hooks
for file in /usr/local/etc/bash_completion.d/*; do
source $file
@spiffxp
spiffxp / .gitconfig
Created December 11, 2012 20:48
My git config
[user]
name = Aaron Crickenberger
email = spiffxp@gmail.com
[alias]
br = branch
ca = commit --amend
ci = commit
cp = cherry-pick
co = checkout
fp = fetch --prune
@spiffxp
spiffxp / ProxyMockIntelliJHighlightingTests.scala
Created January 22, 2013 08:36
Having an issue getting IntelliJ to highlight ScalaMock 3.x + ScalaTest properly
package com.example
import org.scalatest.FunSuite
import org.scalamock.scalatest.proxy.MockFactory
import org.scalamock.scalatest.{MockFactory => RegularMockFactory}
import org.scalamock.proxy.ProxyMockFactory
trait Highlight
class ProxyMockIntelliJHighlightingBrokenTest extends FunSuite with MockFactory {
@spiffxp
spiffxp / OnCallTest.scala
Created January 22, 2013 08:41
Troubles w/ onCall in ScalaMock 3.x proxy mocks
package com.example
import org.scalatest.FunSuite
import org.scalamock.scalatest.MockFactory
import org.scalamock.proxy.ProxyMockFactory
class OnCallTest extends FunSuite with ProxyMockFactory with MockFactory {
trait OnCallTrait {
def foo (a: Int, b: Double)
}
@spiffxp
spiffxp / SuiteScopedMockTest.scala
Created January 22, 2013 08:45
Troubles w/ ScalaTest suite-scoped mocks in ScalaMock 3.x when using proxy mocks
package com.example
import org.scalatest.FunSuite
import org.scalamock.scalatest.MockFactory
import org.scalamock.proxy.ProxyMockFactory
class SuiteScopedMockTest extends FunSuite with MockFactory with ProxyMockFactory {
trait Foo {
def foo (i: Int)
}
org/repo in sigs.yaml? has owners? has CONTRIBUTING.md? has code-of-conduct.md? has approve? in tide? branch protected?
kubernetes/kubelet missing no owners no CONTRIBUTING.md no code-of-conduct.md
kubernetes/kube-scheduler missing no owners no CONTRIBUTING.md no code-of-conduct.md
kubernetes/kube-proxy missing no owners no CONTRIBUTING.md no code-of-conduct.md
kubernetes/kube-controller-manager missing no owners no CONTRIBUTING.md no code-of-conduct.md
kubernetes/sample-cli-plugin no owners no CONTRIBUTING.md no code-of-condu
#!/usr/bin/env bash
name=$(basename ${0%.*})
data_dir=data/${name}
mkdir -p ${data_dir}
orgs="kubernetes kubernetes-client kubernetes-csi kubernetes-sigs kubernetes-incubator"
sigs_yaml=${data_dir}/sigs.yaml
#!/usr/bin/env bash
set -eu
name=$(basename ${0%.*})
data_dir=data/${name}
mkdir -p ${data_dir}
refresh_testgrid_summary_json=true
  • Q: does k8s-ci-robot remove do-not-merge/cherry-pick-not-approved on its own?

  • A: yes (eg: kubernetes/kubernetes#65959)

  • Q: are milestones required for cherry pick merges?

  • A: not with tide, eg: kubernetes/kubernetes#67150, kubernetes/kubernetes#67162

  • A: mungegithub doesn't comment about this requirement as far as I can tell so I don't know how folks tribally learned about it

  • Q: is cherrypick-candidate required for merge?