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
2021/02/17 17:17:18 Registering 4 clients | |
2021/02/17 17:17:18 Readiness and health check server listening on port 8080 | |
2021/02/17 17:17:18 Registering 4 informer factories | |
2021/02/17 17:17:18 Registering 8 informers | |
2021/02/17 17:17:18 Registering 2 controllers | |
{"level":"info","ts":"2021-02-17T17:17:18.901Z","caller":"logging/config.go:116","msg":"Successfully created the logger."} | |
{"level":"info","ts":"2021-02-17T17:17:18.901Z","caller":"logging/config.go:117","msg":"Logging level set to: info"} | |
{"level":"info","ts":"2021-02-17T17:17:18.901Z","logger":"tekton-pipelines-controller","caller":"profiling/server.go:64","msg":"Profiling enabled: false","commit":"736e98e"} | |
{"level":"info","ts":"2021-02-17T17:17:18.904Z","logger":"tekton-pipelines-controller","caller":"leaderelection/context.go:46","msg":"Running with Standard leader election","commit":"736e98e"} | |
{"level":"info","ts":"2021-02-17T17:17:18.904Z","logger":"tekton-pipelines-controller","caller":"taskrun/controller.go:97","msg":"Setting up event handlers |
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 | |
#script to build concourse binary and concoirse image on centos machine | |
#included resources are docker-image, archiv, time, semver, pool and git | |
#golang and docker should be installed | |
#concourse binary will be available at the dir, where script is running | |
set -e | |
set -x |
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 | |
execc() | |
{ | |
kubectl exec --namespace=$1 $2 -i -t -- bash -il | |
} | |
desc() | |
{ | |
kubectl describe po --namespace=$1 $2 |
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
--- | |
name: cf-diego | |
director_uuid: REPLACE-WITH-DIRECTOR-UUID | |
releases: | |
- {name: cf, version: latest} | |
- {name: diego, version: latest} | |
- {name: garden-runc, version: latest} | |
- {name: cflinuxfs2-rootfs, version: latest} | |
- {name: routing, version: latest} |
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 | |
# bosh release | |
mkdir -p releases | |
apt-get update | |
sudo apt-get install -y git wget curl ruby unzip | |
wget ftp://ftp.unicamp.br/pub/ppc64el/ubuntu/14_04/cloud-foundry/go-1.7-ppc64le.tar.gz | |
rm -rf /usr/local/go /usr/local/bin/go |
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 | |
# cf-linux bosh release | |
mkdir -p releases | |
sudo add-apt-repository -y ppa:openjdk-r/ppa | |
apt-get update | |
sudo apt-get install -y git zip openjdk-8-jre openjdk-8-jdk ruby unzip | |
wget ftp://ftp.unicamp.br/pub/ppc64el/ubuntu/14_04/cloud-foundry/go-1.7-ppc64le.tar.gz |
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 | |
set -e | |
set -x | |
# cpi bosh release | |
rm -rf bosh-openstack-cpi-*.tgz releases/ | |
mkdir -p releases | |
apt-get update |
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
set -e -x | |
# etcd | |
apt-get update | |
apt-get install -y wget tar git zip | |
# download and install go-1.7-ppc64le.tar.gz from unicamp.br | |
wget https://storage.googleapis.com/golang/go1.8.linux-ppc64le.tar.gz | |
rm -rf /usr/local/go /usr/local/bin/go | |
tar xvfz go1.8.linux-ppc64le.tar.gz -C /usr/local | |
ln -s /usr/local/go/bin/go /usr/local/bin |
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
set -e -x | |
# consul-template | |
apt-get update | |
apt-get install -y wget tar git zip | |
# download and install go-1.7-ppc64le.tar.gz from unicamp.br | |
wget https://storage.googleapis.com/golang/go1.8.linux-ppc64le.tar.gz | |
rm -rf /usr/local/go /usr/local/bin/go | |
tar xvfz go1.8.linux-ppc64le.tar.gz -C /usr/local | |
ln -s /usr/local/go/bin/go /usr/local/bin |
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
set -e -x | |
# etcd | |
apt-get update | |
apt-get install -y wget tar git | |
# download and install go-1.7-ppc64le.tar.gz from unicamp.br | |
wget ftp://ftp.unicamp.br/pub/ppc64el/ubuntu/14_04/cloud-foundry/go-1.7-ppc64le.tar.gz | |
rm -rf /usr/local/go /usr/local/bin/go | |
tar xvfz go-1.7-ppc64le.tar.gz -C /usr/local | |
ln -s /usr/local/go/bin/go /usr/local/bin |
NewerOlder