I hereby claim:
- I am ndeloof on github.
- I am ndeloof (https://keybase.io/ndeloof) on keybase.
- I have a public key whose fingerprint is 06A1 945C 671F 0530 F392 1434 9858 809D 6F8F 6E7E
To claim this, I am signing this object:
stage 'build' { | |
withDocker(image: 'node_js:4.4', | |
environment: [foo: 'bar'], | |
volumes: [node_cache: '/node_modules'], | |
commands: """ | |
npm install | |
npm test | |
... | |
""", |
--- | |
- build: # stage ('build') { ... | |
# define the docker image used to run the build | |
# an implicit volume for current project's git working copy is mounted | |
image: maven:3.3-jdk-8 | |
# set environment variables, use $$ for credentials injection, as used by http://readme.drone.io/usage/secrets/ | |
environment: | |
- foo: bar |
I hereby claim:
To claim this, I am signing this object:
Exception in thread "main" java.util.ServiceConfigurationError: jenkins.bootstrap.BootLogic: Provider hudson.WebAppMain could not be instantiated | |
at java.util.ServiceLoader.fail(ServiceLoader.java:232) | |
at java.util.ServiceLoader.access$100(ServiceLoader.java:185) | |
at java.util.ServiceLoader$LazyIterator.nextService(ServiceLoader.java:384) | |
at java.util.ServiceLoader$LazyIterator.next(ServiceLoader.java:404) | |
at java.util.ServiceLoader$1.next(ServiceLoader.java:480) | |
at jenkins.bootstrap.Bootstrap.loadBootLogics(Bootstrap.java:209) | |
at jenkins.bootstrap.Bootstrap.contextInitialized(Bootstrap.java:106) | |
at org.eclipse.jetty.server.handler.ContextHandler.callContextInitialized(ContextHandler.java:890) | |
at org.eclipse.jetty.servlet.ServletContextHandler.callContextInitialized(ServletContextHandler.java:532) |
apiVersion: tekton.dev/v1alpha1 | |
kind: Task | |
metadata: | |
name: say-hello | |
spec: | |
inputs: | |
params: | |
- name: who | |
description: who to say hello | |
default: kitty |
apiVersion: tekton.dev/v1alpha1 | |
kind: Task | |
metadata: | |
name: say-hello | |
spec: | |
inputs: | |
params: | |
- name: who | |
description: who to say hello | |
default: kitty |
pipelines: | |
build: | |
steps: | |
- image: alpine | |
sh: "hello world" |
Following docs on https://docs.aws.amazon.com/eks/latest/userguide/create-cluster.html
➜ ~ eksctl create cluster --name kikito --version 1.14 --nodegroup-name standard-workers --node-type m5.large --nodes 2 --nodes-min 1 --nodes-max 4 --node-ami auto --ssh-access
[ℹ] using region eu-west-3
[ℹ] setting availability zones to [eu-west-3a eu-west-3b eu-west-3c]
[ℹ] subnets for eu-west-3a - public:192.168.0.0/19 private:192.168.96.0/19
[ℹ] subnets for eu-west-3b - public:192.168.32.0/19 private:192.168.128.0/19
#! /bin/bash | |
# Compatibility check for registry to support multi-architecutre docker images | |
# (also required for docker app support) | |
# | |
# Usage: | |
# docker login <REGISTRY> | |
# ... | |
# ./multiarch.sh <REGISTRY> | |
# |
#! /bin/bash | |
# Compatibility check for registry to support multi-architecutre docker images | |
# (also required for docker app support) | |
# | |
# Usage: | |
# docker login <REGISTRY> | |
# ... | |
# ./multiarch.sh <REGISTRY> | |
# |