Commit ce93f17e authored by Darren Shepherd's avatar Darren Shepherd

Update vendor

parent 126247b8
......@@ -9,7 +9,7 @@ package=github.com/opencontainers/runc/libcontainer/nsenter
package=github.com/opencontainers/runc/libcontainer/specconv
package=github.com/opencontainers/runc/contrib/cmd/recvtty
k8s.io/kubernetes v1.13.2-k3s3 https://github.com/ibuildthecloud/k3s.git transitive=true,staging=true
k8s.io/kubernetes v1.13.2-k3s4 https://github.com/ibuildthecloud/k3s.git transitive=true,staging=true
github.com/rancher/norman 628eb6b32906125ddd77e23f3ad3c9bdb6e93664 https://github.com/ibuildthecloud/norman.git
github.com/coreos/flannel 3d7cff78e2ca4cade87c6c7d44adf27fe3de2709 https://github.com/ibuildthecloud/flannel.git
......
......@@ -3,8 +3,8 @@ package version
var (
gitMajor = "1"
gitMinor = "12"
gitVersion = "v1.13.2-k3s3"
gitCommit = "2c2e61ebc2c99ee1dfb366d00e0eaa51507c2d22"
gitVersion = "v1.13.2-k3s4"
gitCommit = "9601d3b20316305e14aafcd5af9f7e07e78ae9a4"
gitTreeState = "clean"
buildDate = "2019-01-24T16:43+00:00Z"
buildDate = "2019-01-26T01:43+00:00Z"
)
#!/bin/bash
set -e
exit()
{
exit=$?
kill -9 $ETCD_PID $HYPERKUBE_PID 2>/dev/null || true
rm -f hyperkube
return $exit
}
trap exit EXIT
echo Compiling hyperkube
./hack/update-codegen.sh || ./hack/update-codegen.sh
go build -o hyperkube ./cmd/hyperkube
etcd &
ETCD_PID=$!
./hyperkube kube-apiserver --etcd-servers http://localhost:2379 --cert-dir $(pwd)/certs &
HYPERKUBE_PID=$!
while ! curl -f http://localhost:8080/healthz; do
echo waiting for k8s
sleep 1
done
curl http://localhost:8080/openapi/v2 > openapi.json
curl -H "Accept: application/com.github.proto-openapi.spec.v2@v1.0+protobuf" http://localhost:8080/openapi/v2 > openapi.pb
git add openapi.json
git add openapi.pb
git commit -m "Save openapi"
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -3,8 +3,8 @@ package version
var (
gitMajor = "1"
gitMinor = "12"
gitVersion = "v1.13.2-k3s3"
gitCommit = "2c2e61ebc2c99ee1dfb366d00e0eaa51507c2d22"
gitVersion = "v1.13.2-k3s4"
gitCommit = "9601d3b20316305e14aafcd5af9f7e07e78ae9a4"
gitTreeState = "clean"
buildDate = "2019-01-24T16:43+00:00Z"
buildDate = "2019-01-26T01:43+00:00Z"
)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment