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
/* | |
Copyright 2017 The Kubernetes Authors. | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 | |
Unless required by applicable law or agreed to in writing, software |
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
Mar 10 02:12:15 k8s-master-30342830-0 kubelet[16916]: I0310 02:12:15.416617 16916 flags.go:59] FLAG: --add-dir-header="false" | |
Mar 10 02:12:15 k8s-master-30342830-0 kubelet[16916]: I0310 02:12:15.417643 16916 flags.go:59] FLAG: --address="0.0.0.0" | |
Mar 10 02:12:15 k8s-master-30342830-0 kubelet[16916]: I0310 02:12:15.417660 16916 flags.go:59] FLAG: --allowed-unsafe-sysctls="[]" | |
Mar 10 02:12:15 k8s-master-30342830-0 kubelet[16916]: I0310 02:12:15.417676 16916 flags.go:59] FLAG: --alsologtostderr="false" | |
Mar 10 02:12:15 k8s-master-30342830-0 kubelet[16916]: I0310 02:12:15.417683 16916 flags.go:59] FLAG: --anonymous-auth="false" | |
Mar 10 02:12:15 k8s-master-30342830-0 kubelet[16916]: I0310 02:12:15.417691 16916 flags.go:59] FLAG: --application-metrics-count-limit="100" | |
Mar 10 02:12:15 k8s-master-30342830-0 kubelet[16916]: I0310 02:12:15.417698 16916 flags.go:59] FLAG: --authentication-token-webhook="true" | |
Mar 10 02:12:15 k8s-master-30342830-0 kubelet[16916]: I0310 02:12:15.417704 16916 flags.go:59] FL |
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 | |
if [ -z "$GITHUB_USERNAME" ]; then | |
echo "Must set the GITHUB_USERNAME variable" | |
exit 1 | |
fi | |
if [ -z "$GITHUB_REPOS" ]; then | |
# You may set up a bash string array of github repositories for which your GITHUB_USERNAME has a fork, e.g.: | |
export GITHUB_REPOS="https://github.com/kubernetes-sigs/cluster-api-provider-azure.git https://github.com/Azure/aks-engine.git \ | |
https://github.com/weaveworks/kured.git https://github.com/kubernetes-sigs/cluster-api.git https://github.com/kubernetes/perf-tests.git \ |
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 | |
if [ -z "$RESOURCE_GROUP" ]; then | |
echo "must provide a RESOURCE_GROUP env var" | |
exit 1; | |
fi | |
# Continually look for non-Succeeded VMSS instances | |
while true; do | |
NUM_VMSS=0 |
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 | |
if [ -z "$RESOURCE_GROUP" ]; then | |
echo "must provide a RESOURCE_GROUP env var" | |
exit 1; | |
fi | |
if [ -z "$REGION" ]; then | |
echo "must provide a REGION env var" | |
exit 1; |
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
{ | |
"kustomize_substitutions": { | |
"AZURE_SUBSCRIPTION_ID": "<sub id here>", | |
"AZURE_TENANT_ID": "<tenant id here>", | |
"AZURE_CLIENT_SECRET": "<sp pw here>", | |
"AZURE_CLIENT_ID": "<sp id here>", | |
"AZURE_ENVIRONMENT": "AzurePublicCloud", | |
"AZURE_SSH_PUBLIC_KEY_B64": "<ssh public key here>" | |
}, | |
"worker-templates": { |