export PYTHONPATH=${PYTHONPATH}:/usr/lib64/python3.6dnf config-manager --add-repo=http://negativo17.org/repos/fedora-nvidia.repo
# yum-config-manager --add-repo=http://negativo17.org/repos/epel-nvidia.repo| kind: StorageClass | |
| apiVersion: storage.k8s.io/v1beta1 | |
| metadata: | |
| name: slow | |
| provisioner: kubernetes.io/azure-file | |
| parameters: | |
| skuName: Standard_LRS | |
| location: eastus | |
| secretnamespace: azure-file-ns | |
| --- |
| apiVersion: v1 | |
| kind: Namespace | |
| metadata: | |
| name: azure-file-ns | |
| --- | |
| apiVersion: rbac.authorization.k8s.io/v1 | |
| kind: Role | |
| metadata: | |
| name: system:controller:persistent-volume-binder | |
| namespace: azure-file-ns |
| apiVersion: extensions/v1beta1 | |
| kind: DaemonSet | |
| metadata: | |
| labels: | |
| app: rook-ds | |
| name: rook-ds | |
| namespace: rook-system | |
| spec: | |
| selector: | |
| matchLabels: |
tests/scripts/minikube.sh upkubectl create -f rook-operator.yamlkubectl create -f rook-cluster.yaml| FROM centos:7 | |
| RUN yum install -y ebtables ethtool iptables ipset docker | |
| ADD hyperkube /bin/hyperkube | |
| ADD kubelet /bin/kubelet | |
| #!/bin/bash | |
| docker run \ | |
| --volume=/:/rootfs:rw \ | |
| --volume=/var/run:/var/run:rw \ | |
| --volume=/sys:/sys:rw \ | |
| --volume=/sys/fs/cgroup:/sys/fs/cgroup:rw \ | |
| --volume=/var/lib/docker:/var/lib/docker:rw \ | |
| --volume=/var/lib/kubelet/:/var/lib/kubelet:rw \ | |
| --volume=/dev:/dev \ |
| apiVersion: v1 | |
| kind: PersistentVolume | |
| metadata: | |
| name: csi-iscsi-pv | |
| labels: | |
| name: csi-iscsi-pv | |
| spec: | |
| accessModes: | |
| - ReadWriteOnce | |
| capacity: |
| pragma solidity ^0.4.11; | |
| /** | |
| * @title Ownable | |
| * @dev The Ownable contract has an owner address, and provides basic authorization control | |
| * functions, this simplifies the implementation of "user permissions". | |
| */ | |
| contract Ownable { | |
| address public owner; |
| apiVersion: v1 | |
| kind: Service | |
| metadata: | |
| name: elasticsearch-logging | |
| labels: | |
| k8s-addon: logging-elasticsearch.addons.k8s.io | |
| k8s-app: elasticsearch-logging | |
| kubernetes.io/cluster-service: "true" | |
| kubernetes.io/name: "Elasticsearch" | |
| spec: |