This file contains hidden or 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
# Deploying Velero for a Kubernetes cluster hosted in AWS | |
# For in depth details, check https://heptio.github.io/velero/master/aws-config.html | |
export VELERO_FOLDER=/opt/velero | |
export BUCKET_NAME=k8s-cluster-velero # Use a different name | |
export CLOUD_REGION=us-east-1 | |
kubectl create secret generic cloud-credentials \ | |
--namespace velero \ |
This file contains hidden or 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
# Deploying Velero for a Kubernetes cluster hosted in GCP | |
# For in depth details, check https://heptio.github.io/velero/master/gcp-config.html | |
export VELERO_FOLDER=/opt/velero | |
export BUCKET_NAME=k8s-cluster-velero # Use a different name | |
kubectl create secret generic cloud-credentials \ | |
--namespace velero \ | |
--from-file cloud=$VELERO_FOLDER/credentials-velero |
This file contains hidden or 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
# Configuring Velero namespace, RBAC and CRDs by applying the Kubernetes prerequisites YAML | |
export VELERO_FOLDER=/opt/velero | |
export VELERO_VERSION=v0.11.0 | |
wget https://github.com/heptio/velero/releases/download/$VELERO_VERSION/velero-$VELERO_VERSION-linux-amd64.tar.gz | |
mkdir -p $VELERO_FOLDER | |
tar -xzvf velero-$VELERO_VERSION-linux-amd64.tar.gz -C $VELERO_FOLDER | |
mv $VELERO_FOLDER/velero /usr/bin | |
chmod +x /usr/bin/velero |
This file contains hidden or 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
--- | |
packages: | |
- ansible | |
- aws-cli | |
- base-devel | |
- calibre | |
- clang | |
- code | |
- docker | |
- docker-compose |
This file contains hidden or 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
// | |
/****************************************************************************** | |
* user.js * | |
* https://github.com/pyllyukko/user.js * | |
******************************************************************************/ | |
/****************************************************************************** | |
* SECTION: HTML5 / APIs / DOM * | |
******************************************************************************/ |
This file contains hidden or 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
[global_config] | |
always_split_with_profile = True | |
enabled_plugins = LaunchpadCodeURLHandler, APTURLHandler, LaunchpadBugURLHandler | |
window_state = maximise | |
[keybindings] | |
[layouts] | |
[[default]] | |
[[[child1]]] | |
parent = window0 | |
profile = default |
This file contains hidden or 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
--- | |
apiVersion: v1 | |
kind: ServiceAccount | |
metadata: | |
name: tiller | |
namespace: kube-system | |
--- | |
apiVersion: rbac.authorization.k8s.io/v1 | |
kind: ClusterRoleBinding | |
metadata: |
This file contains hidden or 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
2019/11/25 20:45:20.159403 fixImports(filename="upup/models/bindata.go"), abs="/home/tioxy/go/src/k8s.io/kops/upup/models/bindata.go", srcDir="/home/tioxy/go/src/k8s.io/kops/upup/models" ... | |
diff -u upup/models/bindata.go.orig upup/models/bindata.go | |
--- upup/models/bindata.go.orig 2019-11-25 20:45:20.220028280 -0300 | |
+++ upup/models/bindata.go 2019-11-25 20:45:20.220028280 -0300 | |
@@ -1842,87 +1842,87 @@ | |
// _bindata is a table, holding each asset generator, mapped to its name. | |
var _bindata = map[string]func() (*asset, error){ | |
"BUILD.bazel": buildBazel, | |
- "cloudup/resources/addons/authentication.aws/k8s-1.10.yaml.template": cloudupResourcesAddonsAuthenticationAwsK8s110YamlTemplate, | |
- "cloudup/resources/addons/authentication.aws/k8s-1.12.yaml.template": cloudupResourcesAddonsAuthenticationAwsK8s112YamlTemplate, |
This file contains hidden or 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
[/Script/ShooterGame.ShooterGameUserSettings] | |
DefaultMonitorDeviceID="MONITOR\\BNQ7F33\\{4d36e96e-e325-11ce-bfc1-08002be10318}\\0002" | |
DefaultMonitorIndex=0 | |
LastConfirmedDefaultMonitorDeviceID="MONITOR\\BNQ7F33\\{4d36e96e-e325-11ce-bfc1-08002be10318}\\0002" | |
LastConfirmedDefaultMonitorIndex=0 | |
bShouldLetterbox=True | |
bLastConfirmedShouldLetterbox=True | |
bUseVSync=False | |
bUseDynamicResolution=False | |
ResolutionSizeX=1280 |
This file contains hidden or 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
golang 1.16.6 |