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: extensions/v1beta1 | |
kind: Deployment | |
metadata: | |
labels: | |
app: my-nginx | |
name: my-nginx | |
namespace: kube-addons | |
spec: | |
replicas: 20 | |
selector: |
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
import requests | |
url = "https://www.google.com" | |
response = requests.get(url) | |
if response: | |
print("The HTTP response code from " + url + " is " + str(response.status_code)) | |
else: | |
print("An error has occurred.") |
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
print("Hello World") |
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
[debug] Created tunnel using local port: '50995' | |
[debug] SERVER: "127.0.0.1:50995" | |
[debug] Fetched stable/velero to /Users/<username>/.helm/cache/archive/velero-2.0.3.tgz | |
Release "velero" does not exist. Installing it now. | |
[debug] CHART PATH: /Users/<username>/.helm/cache/archive/velero-2.0.3.tgz | |
NAME: 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
kubectl logs -n kube-addons velero-746b65bcf4-sg44b | |
time="2019-07-19T20:08:58Z" level=info msg="setting log-level to INFO" | |
time="2019-07-19T20:08:58Z" level=info msg="Starting Velero server v1.0.0 (72f5cadc3a865019ab9dc043d4952c9bfd5f2ecb)" logSource="pkg/cmd/server/server.go:165" | |
time="2019-07-19T20:08:58Z" level=info msg="registering plugin" command=/velero kind=BackupItemAction logSource="pkg/plugin/clientmgmt/registry.go:100" name=velero.io/pod | |
time="2019-07-19T20:08:58Z" level=info msg="registering plugin" command=/velero kind=BackupItemAction logSource="pkg/plugin/clientmgmt/registry.go:100" name=velero.io/pv | |
time="2019-07-19T20:08:58Z" level=info msg="registering plugin" command=/velero kind=BackupItemAction logSource="pkg/plugin/clientmgmt/registry.go:100" name=velero.io/serviceaccount | |
time="2019-07-19T20:08:58Z" level=info msg="registering plugin" command=/velero kind=VolumeSnapshotter logSource="pkg/plugin/clientmgmt/registry.go:100" name=velero.io/aws | |
time="2019-07-19T20:08:58Z" level=info msg="reg |
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
time="2019-07-19T20:44:06Z" level=info msg="Setting up backup temp file" backup=kube-addons/test-backup logSource="pkg/controller/backup_controller.go:454" | |
time="2019-07-19T20:44:06Z" level=info msg="Setting up plugin manager" backup=kube-addons/test-backup logSource="pkg/controller/backup_controller.go:461" | |
time="2019-07-19T20:44:06Z" level=info msg="Getting backup item actions" backup=kube-addons/test-backup logSource="pkg/controller/backup_controller.go:465" | |
time="2019-07-19T20:44:06Z" level=info msg="Setting up backup store" backup=kube-addons/test-backup logSource="pkg/controller/backup_controller.go:471" | |
time="2019-07-19T20:44:06Z" level=info msg="Writing backup version file" backup=kube-addons/test-backup logSource="pkg/backup/backup.go:219" | |
time="2019-07-19T20:44:06Z" level=info msg="Including namespaces: *" backup=kube-addons/test-backup logSource="pkg/backup/backup.go:225" | |
time="2019-07-19T20:44:06Z" level=info msg="Excluding namespaces: <none>" backup=kube-addons/test-backup logSource="pkg/backup/b |
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
time="2019-07-19T20:08:58Z" level=info msg="setting log-level to INFO" | |
time="2019-07-19T20:08:58Z" level=info msg="Starting Velero server v1.0.0 (72f5cadc3a865019ab9dc043d4952c9bfd5f2ecb)" logSource="pkg/cmd/server/server.go:165" | |
time="2019-07-19T20:08:58Z" level=info msg="registering plugin" command=/velero kind=BackupItemAction logSource="pkg/plugin/clientmgmt/registry.go:100" name=velero.io/pod | |
time="2019-07-19T20:08:58Z" level=info msg="registering plugin" command=/velero kind=BackupItemAction logSource="pkg/plugin/clientmgmt/registry.go:100" name=velero.io/pv | |
time="2019-07-19T20:08:58Z" level=info msg="registering plugin" command=/velero kind=BackupItemAction logSource="pkg/plugin/clientmgmt/registry.go:100" name=velero.io/serviceaccount | |
time="2019-07-19T20:08:58Z" level=info msg="registering plugin" command=/velero kind=VolumeSnapshotter logSource="pkg/plugin/clientmgmt/registry.go:100" name=velero.io/aws | |
time="2019-07-19T20:08:58Z" level=info msg="registering plugin" command=/velero kind=VolumeSnapshot |