Skip to content

Instantly share code, notes, and snippets.

@khernyo
khernyo / cert-manager-istio-notes.md
Last active May 11, 2020 18:02
cert-manager-istio

Cert Manager Istio notes

  • set docker image and helm chart version

    NOTE: APP_VERSION must be in semver format, otherwise building the helm charts will fail (with no error message).

    export APP_VERSION=0.15.0-dev
    
  • install bazelisk (or bazel)

  • build and test all (just FYI, not necessary):

Keybase proof

I hereby claim:

  • I am khernyo on github.
  • I am khernyo (https://keybase.io/khernyo) on keybase.
  • I have a public key whose fingerprint is 26AA 0B58 8553 8D3C 2AF4 9352 FC06 AB4D DE35 E681

To claim this, I am signing this object:

@khernyo
khernyo / racket-android-build.sh
Last active March 20, 2016 09:20
Make it build the android version properly
#!/bin/bash
set -e
SCRIPT_DIR=$( cd "$( dirname "$0" )" && pwd )
# the location of a clean racket repo which will be copied to avoid "git clone"-ing
REPO=$SCRIPT_DIR/../tools/racket
PLATFORM=linux-x86_64
@khernyo
khernyo / build.gradle
Created December 6, 2012 18:39
Gradle Android configuration with .so hack
// This hack works with com.android.tools.build:gradle:0.2, won't work in later version without modification
apply plugin: 'android'
targetCompatibility = 1.6
sourceCompatibility = 1.6
android {
target = 'android-14'
@khernyo
khernyo / AkkaUtil.scala
Created June 29, 2012 21:23
akka.actor.ask response type
import akka.actor.{ ActorSystem, Actor, ActorRef, Props }
import akka.dispatch.Future
import akka.pattern.ask
import akka.util.duration._
import akka.util.Timeout
import AkkaUtil.{ ResponseType, askT }
object AkkaUtil {
trait ResponseType[T, R]