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: apiextensions.k8s.io/v1beta1 | |
kind: CustomResourceDefinition | |
metadata: | |
creationTimestamp: null | |
labels: | |
api: default | |
platform: kubernetes_sigs_kubebuilder | |
name: applications.app.k8s.io | |
spec: | |
group: app.k8s.io |
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
from __future__ import with_statement | |
from fabric.api import * | |
from fabric.contrib import django | |
env.hosts = ["[email protected]"] | |
REMOTE_PROJECT_ROOT = '/path/to/project/root/' | |
def _run_django_prod(command): |
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
gunvor:~ konryd$ cd /tmp | |
gunvor:tmp konryd$ mkdir someenv | |
gunvor:tmp konryd$ cd someenv | |
gunvor:someenv konryd$ virtualenv . | |
New python executable in ./bin/python | |
Installing setuptools............done. | |
gunvor:someenv konryd$ bin/pip install mock | |
Downloading/unpacking mock | |
Downloading mock-0.7.0b4.zip (310Kb): 310Kb downloaded | |
Running setup.py egg_info for package mock |