├── .DS_Store ├── .gitattributes ├── docker-on-ppc64 ├── 00-introduction.md ├── 01-madeden-nvidia-docker.md └── 01-madedn-nvidia-docker.md ├── gt1030 ├── autoscale.png ├── memory-fail.png ├── memory.png └── tf-home.png ├── juju-vsphere ├── 00-introduction.md ├── img │ ├── bootstrapped.png │ ├── creating-in-vcenter.png │ ├── creating-vm.png │ ├── downloading-ova.png │ ├── giphy.gif │ ├── juju-status.png │ ├── k8s-gpu.png │ ├── tenor.gif │ ├── timeout.png │ ├── vsphere-pci-passthrough.png │ └── vsphere-post-bootstrap.png └── src │ ├── k8s-vsphere.yaml │ └── nvidia-smi.yaml ├── k8s-altcoins └── src │ └── k8s-1cpu-3gpu.yaml ├── k8s-autoscaling ├── blogpost.md ├── prometheus-empty.png └── src │ ├── admin-clusterrole-gke.sh │ ├── admin-clusterrole-juju.sh │ ├── cm-values-kubeconfig.yaml │ ├── create-certs.sh │ ├── manifest-cluster-metrics.yaml │ ├── manifest-etn.yaml │ ├── manifest-grafana.yaml │ ├── manifest-kube-controller-manager.yaml │ ├── manifest-kube-scheduler.yaml │ ├── manifest-metrics-server.yaml │ ├── manifest-node-exporter.yaml │ ├── manifest-prometheus-instance.yaml │ ├── manifest-prometheus-operator.yaml │ ├── manifest-sample-app.yaml │ ├── manifest-state-server.yaml │ ├── manifest-tensorflow-pvc.yaml │ ├── manifest-tensorflow-seed.yaml │ ├── manifest-tensorflow-serving-gpu.yaml │ ├── manifest-tensorflow-serving.yaml │ ├── manifest-tiller-with-resources.yaml │ ├── manifest-xmrrig-proxy.yaml │ ├── rbac-fixes.yaml │ ├── values-eth.yaml │ ├── values-hpa.yaml │ ├── values-nfs-data.yaml │ ├── values-nfs-seed.yaml │ └── values-xmr.yaml ├── k8s-bare-metal ├── 00-introduction.md ├── 01-networking-setup.md ├── 02-pki-setup.md ├── 03-runtime.md ├── 04-conclusion.md ├── assets │ └── tftpboot │ │ ├── grub.efi │ │ ├── ipxe.efi │ │ ├── ipxe.lkrn │ │ ├── ipxe.pxe │ │ ├── pxelinux.cfg │ │ └── default │ │ └── undionly.kpxe ├── bin │ └── kube-conf.sh ├── cfssl │ ├── admin-csr.json │ ├── apiserver-csr.json │ ├── ca-config.json │ ├── ca-csr.json │ └── worker-csr.json ├── groups │ ├── install.json │ ├── kube-master.json │ ├── kube-worker-1.json │ └── kube-worker-2.json ├── ignition │ ├── install-reboot.yaml │ ├── k8s-master.yaml │ └── k8s-worker.yaml ├── profiles │ ├── install-reboot.json │ ├── k8s-master-install.json │ └── k8s-worker-install.json ├── readme.md └── router │ └── config │ └── scripts │ ├── ipxe-green.conf │ └── ipxe-option-space.conf ├── k8s-dl ├── .gitattributes ├── 00-running-dl-in-k8s.md ├── 01-ingest-pipeline.md ├── 02-training.md ├── 03-eval.md ├── 04-serve.md ├── 05-deployment.md ├── 06-conclusion.md ├── img │ ├── 00-workflow.png │ ├── fs-mapping.png │ ├── k8s-model.png │ ├── k8s-ui-01.png │ ├── process-mapping.png │ ├── tensorboard-histograms.png │ ├── tensorboard-scalars.png │ ├── tensorboard.png │ └── tensorflow-scalars-40k.png └── src │ ├── charts │ ├── .gitignore │ ├── Makefile │ ├── dataloader │ │ ├── Chart.yaml │ │ ├── requirements.lock │ │ ├── requirements.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ └── dataloader-job.yaml │ │ └── values.yaml │ ├── distributed-cnn │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── cluster-deployment.yaml │ │ │ ├── cluster-service.yaml │ │ │ ├── job-data-init.yaml │ │ │ ├── pre-install.yaml │ │ │ ├── tensorboard-deployment.yaml │ │ │ └── tensorboard-service.yaml │ │ └── values.yaml │ ├── efs │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ └── storage.yaml │ │ └── values.yaml │ ├── kubernetes-charts-index.yaml │ └── tensorflow │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── cluster-deployment.yaml │ │ ├── cluster-service.yaml │ │ ├── eval-deployment.yaml │ │ ├── serving-deployment.yaml │ │ ├── serving-service.yaml │ │ └── tensorboard-service.yaml │ │ └── values.yaml │ ├── docker │ ├── distributed-cnn │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── data_helpers2.py │ │ ├── eval.py │ │ ├── text_cnn.py │ │ └── train.py │ ├── jupyter-server │ │ ├── Dockerfile │ │ ├── Dockerfile.gpu │ │ └── jupyter_notebook_config.py │ ├── tf-models │ │ ├── Dockerfile-0.11 │ │ ├── Dockerfile-0.11-gpu │ │ ├── Dockerfile-0.9 │ │ ├── Dockerfile-0.9-gpu │ │ ├── Dockerfile-1.0.1 │ │ ├── Dockerfile-1.0.1-gpu │ │ ├── Dockerfile-1.0.1-serving │ │ ├── Dockerfile-1.3.0 │ │ ├── Dockerfile-1.3.0-gpu │ │ ├── Dockerfile-1.3.0-serving │ │ ├── Dockerfile.serving.orig │ │ ├── README.md │ │ ├── bin │ │ │ └── bazel │ │ ├── download.sh │ │ ├── eval.sh │ │ ├── ps.sh │ │ ├── serve.sh │ │ └── worker.sh │ └── tf-worker │ │ ├── Dockerfile │ │ ├── Dockerfile.gpu │ │ └── worker.py │ ├── img │ └── auto-cuda-install.png │ ├── manifests │ ├── load-flowers.yaml │ └── load-imagenet.yaml │ ├── nvidia-smi.yaml │ └── values.yaml ├── k8s-ethereum ├── 00-introduction.md ├── 01-on-bare-metal.md ├── 02aws-in-the-cloud.md ├── 02gce-in-the-cloud.md ├── 03-some-fun-with-it.md ├── 04-conclusion.md ├── img │ ├── cluster.jpg │ ├── ethmon.png │ ├── kubeui-claymore.png │ ├── maas-node-details.png │ └── maas-nodes.png └── src │ └── bundles │ ├── k8s-1cpu-1gpu-aws.yaml │ ├── k8s-1cpu-3gpu-aws.yaml │ ├── k8s-1cpu-3gpu.yaml │ └── k8s-gpu-gce.yaml ├── k8s-existing-env-2-elb ├── 00-introduction.md ├── 01-install-kubernetes.md ├── 02-create-aws-iam-objects.md ├── 03-configuring-k8s.md ├── 04-testing.md ├── 05-conclusion.md ├── img │ ├── cdk.png │ └── hello-world.png └── src │ └── iam │ ├── assume-role.json │ ├── policy-k8s-master.json │ └── policy-k8s-worker.json ├── k8s-existing-env ├── 00-deploying-k8s-existing-environment.md ├── 01-deploy-network-environment.md ├── 02-bootstrapping-juju-in-network-env.md ├── 03-deploying-k8s-bundle.md ├── img │ ├── cf-00.png │ ├── cf-01.png │ ├── cf-02.png │ ├── cf-03.png │ ├── k8s-ui.png │ ├── simple-multi-subnet-vpc.png │ └── simple-multi-subnet-vpc_small.png └── src │ ├── azure │ ├── azuredeploy.json │ ├── azuredeploy.parameters.json │ └── metadata.json │ ├── bundles │ ├── k8s-azure.yaml │ └── k8s.yaml │ └── cloudformation │ └── NetworkLayout.json ├── k8s-federation ├── 00-federating-k8s-clusters.md ├── 01-deploy-federation.md ├── 02-using-federations.md ├── 03-tearing-off.md ├── 04-conclusion.md └── src │ ├── bundles │ ├── k8s-aws.yaml │ └── k8s-azure.yaml │ ├── kube │ ├── aws │ │ └── kubeconfig │ └── azure │ │ └── kubeconfig │ └── manifests │ ├── kube-dns-configmap.yaml │ ├── l7-deployment.yaml │ ├── l7-svc.yaml │ ├── lb-rc.yaml │ ├── microbots-deployment.yaml │ ├── microbots-ds.yaml │ ├── microbots-ing.yaml │ ├── microbots-svc.yaml │ ├── test-configmap.yaml │ ├── test-ns.yaml │ └── test-secret.yaml ├── k8s-flannel-cdk.yaml ├── k8s-gpu-cloud ├── 00-introduction.md ├── 01-deploying.md ├── 02-adding-gpu-support-to-k8s.md ├── 03-tearing-down.md ├── 04-conclusion.md └── src │ ├── k8s-gpu.yaml │ ├── nvidia-smi-8.yaml │ └── nvidia-smi.yaml ├── k8s-gpu-cluster ├── 00-bare-metal-gpu-k8s.md ├── 01-hardware.md ├── 10-install-maas.md ├── 11-juju-deployment.md ├── 12-cuda.md ├── 13-conclusion.md ├── 99-troubleshooting.md ├── pics │ ├── IMG_20161104_173332.jpg │ ├── IMG_20161108_142646.jpg │ ├── adding-4th-node.png │ ├── adding-node.png │ ├── all-6-nodes-new-small.png │ ├── all-6-nodes-new.png │ ├── bootstrapping-small.png │ ├── bootstrapping.png │ ├── cluster-view-close-up-cpu-side-small.jpg │ ├── cluster-view-close-up-cpu-side.jpg │ ├── cluster-view-close-up-gpu-side-small.jpg │ ├── cluster-view-close-up-gpu-side.jpg │ ├── cluster-view-cpu-side-small.jpg │ ├── cluster-view-cpu-side.jpg │ ├── cluster-view-gpu-side-small.jpg │ ├── cluster-view-gpu-side.jpg │ ├── cluster-view-top-side.jpg │ ├── commisioning-2.png │ ├── commissioning-2-small.png │ ├── commissioning-nodes-small.png │ ├── commissioning-nodes.png │ ├── commissioning-small.png │ ├── commissioning.png │ ├── deploying-k8s-2-small.png │ ├── deploying-k8s-2.png │ ├── deploying-k8s-small.png │ ├── deploying-k8s.png │ ├── nodes-ready.png │ ├── nuc-external-card.jpg │ ├── nuc-view-small.jpg │ ├── nuc-view.jpg │ ├── obv4-context.jpg │ ├── obv4.png │ ├── orange-matchbox.jpg │ ├── psu-cables.jpg │ ├── scaling-out.png │ ├── video-card-view-small.jpg │ └── video-card-view.jpg └── src │ ├── k8s-master │ └── etc │ │ └── default │ │ └── kube-apiserver │ ├── k8s-worker │ └── etc │ │ └── default │ │ └── kubelet │ ├── k8s.yaml │ ├── maasberry │ └── etc │ │ ├── default │ │ └── isc-dhcp-server │ │ ├── dhcp │ │ └── dhcpd.conf │ │ ├── iptables.ipv4.nat │ │ ├── network │ │ └── interfaces.d │ │ │ └── eth1.cfg │ │ ├── rc.local │ │ └── sysctl.d │ │ └── 99-maas.conf │ └── nvidia-smi-job.yaml ├── k8s-on-ppc64le ├── 00-introduction.md ├── 01-preparations.md ├── 02-installation-p1-ubuntu.md ├── 02-installation-p2-lxd.md ├── 02-installation-p3-juju.md ├── 03-k8s-deployment.md └── pics │ └── k8sppc64-network.png ├── k8s-openstack ├── 00-introduction.md ├── 10-juju-deploy.md ├── 11-juju-status.md └── img │ ├── juju-gui-openstack-deploying.png │ └── juju-status.png ├── k8s-serverless ├── 00-introduction.md ├── 01-kubeless.md ├── 02-fission.md └── src │ └── kubeless │ ├── httpToKafka │ ├── README.md │ ├── http_to_kafka.py │ ├── package.json │ └── requirements.txt │ ├── moveToNextQueue │ ├── README.md │ ├── make_decision.py │ ├── move_to_next_queue.py │ ├── package.json │ └── requirements.txt │ └── sendSMS │ ├── README.md │ ├── package.json │ ├── requirements.txt │ └── send_sms.py ├── k8s-tensorflow ├── 00-introduction.md ├── img │ ├── gcp-cuda-deploy.png │ ├── gpu-logs-from-k8s.png │ ├── juju-status.png │ ├── kubeui-all.png │ ├── kubeui-pvc.png │ ├── kubeui.png │ └── tensorboard.png └── src │ ├── bundles │ └── k8s-tensorflow.yaml │ └── nvidia-smi.yaml ├── k8s-tf-serving ├── blogpost.md ├── img │ ├── .DS_Store │ ├── ui-cat-03.png │ ├── ui-cat-09-2.png │ └── ui-cat-09.png └── src │ ├── Dockerfile.cpu │ ├── Dockerfile.gpu │ ├── Dockerfile.tf-dev │ ├── entrypoint.sh │ ├── manifest-tensorflow-image-resizer.yaml │ ├── manifest-tensorflow-serving-1cpu.yaml │ ├── manifest-tensorflow-serving-8cpu.yaml │ └── manifest-tensorflow-serving-gpu.yaml ├── k8s-transcode ├── 00-concurrency-in-k8s.md ├── 01-transcoder.md ├── 02-deploying-kubernetes.md ├── 03-running-jobs.md ├── 04-results-etl.md ├── 05-analyzing results.md ├── 06-conclusion.md ├── bm-scripts.sh ├── img │ ├── 18-vs-12-concurrency.png │ ├── 192-jobs-in-parallel.png │ ├── aws-duration-function_of_concurrency.png │ ├── aws-vs-lxd-2c.png │ ├── aws-vs-lxd-4c.png │ ├── aws-vs-lxd-5c.png │ ├── concurrency-12-cpu1500-vs-cpu1000.png │ ├── concurrency-3-htop.png │ ├── cpu-pinning.png │ ├── dashboard-48.png │ ├── grafana-cluster-view.png │ ├── half-a-day-testing.png │ ├── heatmap-cpu-lower-than-1.png │ ├── htop-lxd-5-cpus.png │ ├── htop-lxd-high-concurrency.png │ ├── image (1).png │ ├── influence-ram.png │ ├── k8s-01.png │ ├── k8s-full-load.png │ ├── k8s-full-usage.png │ ├── lxd-and-control-plane.png │ ├── lxd-fencing-cpus.png │ ├── performance-penalty-fct-concurrency.png │ ├── running-96-pods.png │ └── time-slicing.png └── src │ ├── .gitignore │ ├── bin │ ├── get-logs.sh │ ├── process-logs.sh │ ├── set-cpu-count.sh │ └── setup-worker.sh │ ├── juju │ ├── k8s-aws.yaml │ ├── k8s-lxd-4c-8.yaml │ ├── k8s-lxd-5c-6.yaml │ ├── k8s-lxd-6c-9.yaml │ ├── k8s-lxd-8c-4.yaml │ ├── k8s-maas-3n.yaml │ └── k8s-maas.yaml │ ├── logs │ ├── aws-16cx1-p2.tar.gz │ ├── aws-16cx1.tar.gz │ ├── aws-16xc1-p1.tar.gz │ ├── aws.tar.gz │ ├── lxd-3x4c.tar.gz │ ├── lxd-3x5c-burst.tar.gz │ ├── lxd-3x5c-variations.tar.gz │ ├── lxd-3x5c.tar.gz │ ├── lxd-4x2c.tar.gz │ ├── lxd-4x3c.tar.gz │ └── lxd-4x4c.tar.gz │ ├── lxd │ └── kubernetes-worker-profile │ ├── transcoder │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ └── job.yaml │ └── values.yaml │ └── values │ ├── values-1-aws-16cx1-1-2.yaml │ ├── values-1-aws-16cx1-2-2.yaml │ ├── values-1-aws-16cx1-3-2.yaml │ ├── values-1-aws-16cx1-4-2.yaml │ ├── values-1-aws-16cx1-5-2.yaml │ ├── values-1-aws-16cx1-6-2.yaml │ ├── values-1-aws-16cx1-7-2.yaml │ ├── values-1-aws-2-2.yaml │ ├── values-1-aws-3-2.yaml │ ├── values-1-aws-4-2.yaml │ ├── values-1-aws-5-2.yaml │ ├── values-1-aws-6-2.yaml │ ├── values-1-aws-7-2.yaml │ ├── values-1-awslxd-2-2.yaml │ ├── values-1-awslxd-3-2.yaml │ ├── values-1-awslxd-4-2.yaml │ ├── values-1-awslxd-5-2.yaml │ ├── values-1-bm-0.8-1.yaml │ ├── values-1-bm-0.8-16.yaml │ ├── values-1-bm-0.8-2.yaml │ ├── values-1-bm-0.8-4.yaml │ ├── values-1-bm-0.8-8.yaml │ ├── values-1-bm-1-1.yaml │ ├── values-1-bm-1-16.yaml │ ├── values-1-bm-1-2.yaml │ ├── values-1-bm-1-4.yaml │ ├── values-1-bm-1-8.yaml │ ├── values-1-bm-1.5-1.yaml │ ├── values-1-bm-1.5-16.yaml │ ├── values-1-bm-1.5-2.yaml │ ├── values-1-bm-1.5-4.yaml │ ├── values-1-bm-1.5-8.yaml │ ├── values-1-bm-2-1.yaml │ ├── values-1-bm-2-16.yaml │ ├── values-1-bm-2-2.yaml │ ├── values-1-bm-2-4.yaml │ ├── values-1-bm-2-8.yaml │ ├── values-1-bm-3-1.yaml │ ├── values-1-bm-3-16.yaml │ ├── values-1-bm-3-2.yaml │ ├── values-1-bm-3-4.yaml │ ├── values-1-bm-3-8.yaml │ ├── values-1-lxd-0.8-1.yaml │ ├── values-1-lxd-0.8-16.yaml │ ├── values-1-lxd-0.8-2.yaml │ ├── values-1-lxd-0.8-4.yaml │ ├── values-1-lxd-0.8-8.yaml │ ├── values-1-lxd-1-1.yaml │ ├── values-1-lxd-1-16.yaml │ ├── values-1-lxd-1-2.yaml │ ├── values-1-lxd-1-4.yaml │ ├── values-1-lxd-1-8.yaml │ ├── values-1-lxd-1.5-1.yaml │ ├── values-1-lxd-1.5-16.yaml │ ├── values-1-lxd-1.5-2.yaml │ ├── values-1-lxd-1.5-4.yaml │ ├── values-1-lxd-1.5-8.yaml │ ├── values-1-lxd-2-1.yaml │ ├── values-1-lxd-2-16.yaml │ ├── values-1-lxd-2-2.yaml │ ├── values-1-lxd-2-4.yaml │ ├── values-1-lxd-2-8.yaml │ ├── values-1-lxd-3-1.yaml │ ├── values-1-lxd-3-16.yaml │ ├── values-1-lxd-3-2.yaml │ ├── values-1-lxd-3-4.yaml │ ├── values-1-lxd-3-8.yaml │ ├── values-1-lxd5-1-2.yaml │ ├── values-1-lxd5-2-2.yaml │ ├── values-1-lxd5-3-2.yaml │ ├── values-1-lxd5-4-2.yaml │ ├── values-1-lxd5-5-2.yaml │ ├── values-12-bm-0.1-1.yaml │ ├── values-12-bm-0.1-4.yaml │ ├── values-12-bm-0.2-4.yaml │ ├── values-12-bm-0.4-4.yaml │ ├── values-12-bm-0.8-1.yaml │ ├── values-12-bm-0.8-2.yaml │ ├── values-12-bm-0.8-4.yaml │ ├── values-12-bm-0.8-8.yaml │ ├── values-12-bm-1-1.yaml │ ├── values-12-bm-1-2.yaml │ ├── values-12-bm-1-4.yaml │ ├── values-12-bm-1-8.yaml │ ├── values-12-bm-1.5-1.yaml │ ├── values-12-bm-1.5-2.yaml │ ├── values-12-bm-1.5-4.yaml │ ├── values-12-bm-1.5-8.yaml │ ├── values-12-lxd-0.1-1.yaml │ ├── values-12-lxd-0.1-4.yaml │ ├── values-12-lxd-0.2-4.yaml │ ├── values-12-lxd-0.4-4.yaml │ ├── values-12-lxd-0.8-1.yaml │ ├── values-12-lxd-0.8-2.yaml │ ├── values-12-lxd-0.8-4.yaml │ ├── values-12-lxd-0.8-8.yaml │ ├── values-12-lxd-1-1.yaml │ ├── values-12-lxd-1-2.yaml │ ├── values-12-lxd-1-4.yaml │ ├── values-12-lxd-1-8.yaml │ ├── values-12-lxd-1.5-1.yaml │ ├── values-12-lxd-1.5-2.yaml │ ├── values-12-lxd-1.5-4.yaml │ ├── values-12-lxd-1.5-8.yaml │ ├── values-18-bm-0.1-1.yaml │ ├── values-18-bm-0.1-4.yaml │ ├── values-18-bm-0.2-4.yaml │ ├── values-18-bm-0.4-4.yaml │ ├── values-18-bm-0.8-1.yaml │ ├── values-18-bm-0.8-2.yaml │ ├── values-18-bm-0.8-4.yaml │ ├── values-18-bm-0.8-8.yaml │ ├── values-18-bm-1-1.yaml │ ├── values-18-bm-1-2.yaml │ ├── values-18-bm-1-4.yaml │ ├── values-18-bm-1-8.yaml │ ├── values-18-lxd-0.1-1.yaml │ ├── values-18-lxd-0.1-4.yaml │ ├── values-18-lxd-0.2-4.yaml │ ├── values-18-lxd-0.4-4.yaml │ ├── values-18-lxd-0.8-1.yaml │ ├── values-18-lxd-0.8-2.yaml │ ├── values-18-lxd-0.8-4.yaml │ ├── values-18-lxd-0.8-8.yaml │ ├── values-18-lxd-1-1.yaml │ ├── values-18-lxd-1-2.yaml │ ├── values-18-lxd-1-4.yaml │ ├── values-18-lxd-1-8.yaml │ ├── values-192-bm-0.1-0.8.yaml │ ├── values-192-lxd-0.1-0.8.yaml │ ├── values-2-aws-16cx1-1-2.yaml │ ├── values-2-aws-16cx1-2-2.yaml │ ├── values-2-aws-16cx1-3-2.yaml │ ├── values-2-aws-16cx1-4-2.yaml │ ├── values-2-aws-16cx1-5-2.yaml │ ├── values-2-aws-16cx1-6-2.yaml │ ├── values-2-aws-16cx1-7-2.yaml │ ├── values-2-aws-2-2.yaml │ ├── values-2-aws-3-2.yaml │ ├── values-2-aws-4-2.yaml │ ├── values-2-aws-5-2.yaml │ ├── values-2-aws-6-2.yaml │ ├── values-2-aws-7-2.yaml │ ├── values-2-awslxd-2-2.yaml │ ├── values-2-awslxd-3-2.yaml │ ├── values-2-awslxd-4-2.yaml │ ├── values-2-awslxd-5-2.yaml │ ├── values-2-lxd5-1-2.yaml │ ├── values-2-lxd5-2-2.yaml │ ├── values-2-lxd5-3-2.yaml │ ├── values-2-lxd5-4-2.yaml │ ├── values-2-lxd5-5-2.yaml │ ├── values-24-bm-0.1-1.yaml │ ├── values-24-bm-0.1-2.yaml │ ├── values-24-bm-0.2-2.yaml │ ├── values-24-bm-0.4-1.yaml │ ├── values-24-bm-0.4-2.yaml │ ├── values-24-bm-0.4-4.yaml │ ├── values-24-bm-0.8-1.yaml │ ├── values-24-bm-0.8-2.yaml │ ├── values-24-bm-0.8-4.yaml │ ├── values-24-lxd-0.1-1.yaml │ ├── values-24-lxd-0.1-2.yaml │ ├── values-24-lxd-0.2-2.yaml │ ├── values-24-lxd-0.4-1.yaml │ ├── values-24-lxd-0.4-2.yaml │ ├── values-24-lxd-0.4-4.yaml │ ├── values-24-lxd-0.8-1.yaml │ ├── values-24-lxd-0.8-2.yaml │ ├── values-24-lxd-0.8-4.yaml │ ├── values-3-aws-16cx1-1-2.yaml │ ├── values-3-aws-16cx1-2-2.yaml │ ├── values-3-aws-16cx1-3-2.yaml │ ├── values-3-aws-16cx1-4-2.yaml │ ├── values-3-aws-16cx1-5-2.yaml │ ├── values-3-aws-16cx1-6-2.yaml │ ├── values-3-aws-16cx1-7-2.yaml │ ├── values-3-aws-2-2.yaml │ ├── values-3-aws-3-2.yaml │ ├── values-3-aws-4-2.yaml │ ├── values-3-aws-5-2.yaml │ ├── values-3-aws-6-2.yaml │ ├── values-3-aws-7-2.yaml │ ├── values-3-awslxd-2-2.yaml │ ├── values-3-awslxd-3-2.yaml │ ├── values-3-awslxd-4-2.yaml │ ├── values-3-awslxd-5-2.yaml │ ├── values-3-lxd5-1-2.yaml │ ├── values-3-lxd5-2-2.yaml │ ├── values-3-lxd5-3-2.yaml │ ├── values-3-lxd5-4-2.yaml │ ├── values-3-lxd5-5-2.yaml │ ├── values-4-aws-16cx1-1-2.yaml │ ├── values-4-aws-16cx1-2-2.yaml │ ├── values-4-aws-16cx1-3-2.yaml │ ├── values-4-aws-16cx1-4-2.yaml │ ├── values-4-aws-16cx1-5-2.yaml │ ├── values-4-aws-16cx1-6-2.yaml │ ├── values-4-aws-16cx1-7-2.yaml │ ├── values-4-aws-2-2.yaml │ ├── values-4-aws-3-2.yaml │ ├── values-4-aws-4-2.yaml │ ├── values-4-aws-5-2.yaml │ ├── values-4-aws-6-2.yaml │ ├── values-4-aws-7-2.yaml │ ├── values-4-awslxd-2-2.yaml │ ├── values-4-awslxd-3-2.yaml │ ├── values-4-awslxd-4-2.yaml │ ├── values-4-awslxd-5-2.yaml │ ├── values-4-lxd5-1-2.yaml │ ├── values-4-lxd5-2-2.yaml │ ├── values-4-lxd5-3-2.yaml │ ├── values-4-lxd5-4-2.yaml │ ├── values-4-lxd5-5-2.yaml │ ├── values-48-bm-0.1-1.yaml │ ├── values-48-bm-0.1-2.yaml │ ├── values-48-bm-0.2-2.yaml │ ├── values-48-bm-0.4-1.yaml │ ├── values-48-bm-0.4-2.yaml │ ├── values-48-bm-0.4-4.yaml │ ├── values-48-lxd-0.1-1.yaml │ ├── values-48-lxd-0.1-2.yaml │ ├── values-48-lxd-0.2-2.yaml │ ├── values-48-lxd-0.4-1.yaml │ ├── values-48-lxd-0.4-2.yaml │ ├── values-48-lxd-0.4-4.yaml │ ├── values-5-aws-16cx1-1-2.yaml │ ├── values-5-aws-16cx1-2-2.yaml │ ├── values-5-aws-16cx1-3-2.yaml │ ├── values-5-aws-16cx1-4-2.yaml │ ├── values-5-aws-16cx1-5-2.yaml │ ├── values-5-aws-16cx1-6-2.yaml │ ├── values-5-aws-16cx1-7-2.yaml │ ├── values-5-aws-2-2.yaml │ ├── values-5-aws-3-2.yaml │ ├── values-5-aws-4-2.yaml │ ├── values-5-aws-5-2.yaml │ ├── values-5-aws-6-2.yaml │ ├── values-5-awslxd-2-2.yaml │ ├── values-5-awslxd-3-2.yaml │ ├── values-5-awslxd-4-2.yaml │ ├── values-5-awslxd-5-2.yaml │ ├── values-5-lxd5-1-2.yaml │ ├── values-5-lxd5-2-2.yaml │ ├── values-5-lxd5-3-2.yaml │ ├── values-5-lxd5-4-2.yaml │ ├── values-5-lxd5-5-2.yaml │ ├── values-6-aws-16cx1-1-2.yaml │ ├── values-6-aws-16cx1-2-2.yaml │ ├── values-6-aws-16cx1-3-2.yaml │ ├── values-6-aws-16cx1-4-2.yaml │ ├── values-6-aws-16cx1-5-2.yaml │ ├── values-6-aws-16cx1-6-2.yaml │ ├── values-6-aws-16cx1-7-2.yaml │ ├── values-6-aws-2-2.yaml │ ├── values-6-aws-3-2.yaml │ ├── values-6-aws-4-2.yaml │ ├── values-6-aws-5-2.yaml │ ├── values-6-awslxd-2-2.yaml │ ├── values-6-awslxd-3-2.yaml │ ├── values-6-awslxd-4-2.yaml │ ├── values-6-awslxd-5-2.yaml │ ├── values-6-bm-0.1-4.yaml │ ├── values-6-bm-0.2-4.yaml │ ├── values-6-bm-0.4-4.yaml │ ├── values-6-bm-0.8-1.yaml │ ├── values-6-bm-0.8-2.yaml │ ├── values-6-bm-0.8-4.yaml │ ├── values-6-bm-0.8-8.yaml │ ├── values-6-bm-1-1.yaml │ ├── values-6-bm-1-2.yaml │ ├── values-6-bm-1-4.yaml │ ├── values-6-bm-1-8.yaml │ ├── values-6-bm-1.5-1.yaml │ ├── values-6-bm-1.5-2.yaml │ ├── values-6-bm-1.5-4.yaml │ ├── values-6-bm-1.5-8.yaml │ ├── values-6-bm-2-1.yaml │ ├── values-6-bm-2-2.yaml │ ├── values-6-bm-2-4.yaml │ ├── values-6-bm-2-8.yaml │ ├── values-6-bm-3-1.yaml │ ├── values-6-bm-3-2.yaml │ ├── values-6-bm-3-4.yaml │ ├── values-6-bm-3-8.yaml │ ├── values-6-lxd-0.1-4.yaml │ ├── values-6-lxd-0.2-4.yaml │ ├── values-6-lxd-0.4-4.yaml │ ├── values-6-lxd-0.8-1.yaml │ ├── values-6-lxd-0.8-2.yaml │ ├── values-6-lxd-0.8-4.yaml │ ├── values-6-lxd-0.8-8.yaml │ ├── values-6-lxd-1-1.yaml │ ├── values-6-lxd-1-2.yaml │ ├── values-6-lxd-1-4.yaml │ ├── values-6-lxd-1-8.yaml │ ├── values-6-lxd-1.5-1.yaml │ ├── values-6-lxd-1.5-2.yaml │ ├── values-6-lxd-1.5-4.yaml │ ├── values-6-lxd-1.5-8.yaml │ ├── values-6-lxd-2-1.yaml │ ├── values-6-lxd-2-2.yaml │ ├── values-6-lxd-2-4.yaml │ ├── values-6-lxd-2-8.yaml │ ├── values-6-lxd-3-1.yaml │ ├── values-6-lxd-3-2.yaml │ ├── values-6-lxd-3-4.yaml │ ├── values-6-lxd-3-8.yaml │ ├── values-6-lxd5-1-2.yaml │ ├── values-6-lxd5-2-2.yaml │ ├── values-6-lxd5-3-2.yaml │ ├── values-6-lxd5-4-2.yaml │ ├── values-6-lxd5-5-2.yaml │ ├── values-7-aws-16cx1-1-2.yaml │ ├── values-7-aws-16cx1-2-2.yaml │ ├── values-7-aws-16cx1-3-2.yaml │ ├── values-7-aws-16cx1-4-2.yaml │ ├── values-7-aws-16cx1-5-2.yaml │ ├── values-7-aws-16cx1-6-2.yaml │ ├── values-7-aws-16cx1-7-2.yaml │ ├── values-7-aws-2-2.yaml │ ├── values-7-aws-3-2.yaml │ ├── values-7-aws-4-2.yaml │ ├── values-7-awslxd-2-2.yaml │ ├── values-7-awslxd-3-2.yaml │ ├── values-7-awslxd-4-2.yaml │ ├── values-7-lxd5-1-2.yaml │ ├── values-7-lxd5-2-2.yaml │ ├── values-7-lxd5-3-2.yaml │ ├── values-7-lxd5-4-2.yaml │ ├── values-7-lxd5-5-2.yaml │ ├── values-96-bm-0.1-1.yaml │ ├── values-96-bm-0.2-1.5.yaml │ ├── values-96-bm-0.2-1.yaml │ ├── values-96-lxd-0.1-1.yaml │ ├── values-96-lxd-0.2-1.5.yaml │ ├── values-96-lxd-0.2-1.yaml │ └── values.tmpl └── k8s-using-efs ├── 00-introduction.md ├── 01-deploying.md ├── 02-storage-layer.md ├── 03-efs-in-k8s.md ├── 04-conclusion.md └── src ├── efs-pod.yaml ├── k8s-aws.yaml ├── pv.yaml └── pvc.yaml /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/.DS_Store -------------------------------------------------------------------------------- /docker-on-ppc64/01-madeden-nvidia-docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/docker-on-ppc64/01-madeden-nvidia-docker.md -------------------------------------------------------------------------------- /docker-on-ppc64/01-madedn-nvidia-docker.md: -------------------------------------------------------------------------------- 1 | # Forking nvidia-docker 2 | 3 | The first thing we need to do is to fork nvidia-docker, which we did in (https://github.com/madeden/nvidia-docker) 4 | 5 | -------------------------------------------------------------------------------- /gt1030/autoscale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/gt1030/autoscale.png -------------------------------------------------------------------------------- /gt1030/memory-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/gt1030/memory-fail.png -------------------------------------------------------------------------------- /gt1030/memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/gt1030/memory.png -------------------------------------------------------------------------------- /gt1030/tf-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/gt1030/tf-home.png -------------------------------------------------------------------------------- /juju-vsphere/img/bootstrapped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/juju-vsphere/img/bootstrapped.png -------------------------------------------------------------------------------- /juju-vsphere/img/creating-in-vcenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/juju-vsphere/img/creating-in-vcenter.png -------------------------------------------------------------------------------- /juju-vsphere/img/creating-vm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/juju-vsphere/img/creating-vm.png -------------------------------------------------------------------------------- /juju-vsphere/img/downloading-ova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/juju-vsphere/img/downloading-ova.png -------------------------------------------------------------------------------- /juju-vsphere/img/giphy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/juju-vsphere/img/giphy.gif -------------------------------------------------------------------------------- /juju-vsphere/img/juju-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/juju-vsphere/img/juju-status.png -------------------------------------------------------------------------------- /juju-vsphere/img/k8s-gpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/juju-vsphere/img/k8s-gpu.png -------------------------------------------------------------------------------- /juju-vsphere/img/tenor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/juju-vsphere/img/tenor.gif -------------------------------------------------------------------------------- /juju-vsphere/img/timeout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/juju-vsphere/img/timeout.png -------------------------------------------------------------------------------- /juju-vsphere/img/vsphere-pci-passthrough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/juju-vsphere/img/vsphere-pci-passthrough.png -------------------------------------------------------------------------------- /juju-vsphere/img/vsphere-post-bootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/juju-vsphere/img/vsphere-post-bootstrap.png -------------------------------------------------------------------------------- /k8s-autoscaling/prometheus-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-autoscaling/prometheus-empty.png -------------------------------------------------------------------------------- /k8s-autoscaling/src/admin-clusterrole-gke.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | kubectl create clusterrolebinding super-admin-binding \ 4 | --clusterrole=cluster-admin \ 5 | --user=$(gcloud info --format json | jq -r '.config.account') 6 | 7 | -------------------------------------------------------------------------------- /k8s-autoscaling/src/admin-clusterrole-juju.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | kubectl create clusterrolebinding super-admin-binding \ 4 | --clusterrole=cluster-admin \ 5 | --user=admin 6 | 7 | -------------------------------------------------------------------------------- /k8s-autoscaling/src/rbac-fixes.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: rbac.authorization.k8s.io/v1 2 | kind: ClusterRoleBinding 3 | metadata: 4 | annotations: 5 | rbac.authorization.kubernetes.io/autoupdate: "true" 6 | labels: 7 | kubernetes.io/bootstrapping: rbac-defaults 8 | name: system:node 9 | roleRef: 10 | apiGroup: rbac.authorization.k8s.io 11 | kind: ClusterRole 12 | name: system:node 13 | subjects: 14 | - apiGroup: rbac.authorization.k8s.io 15 | kind: Group 16 | name: system:nodes 17 | 18 | -------------------------------------------------------------------------------- /k8s-bare-metal/assets/tftpboot/grub.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-bare-metal/assets/tftpboot/grub.efi -------------------------------------------------------------------------------- /k8s-bare-metal/assets/tftpboot/ipxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-bare-metal/assets/tftpboot/ipxe.efi -------------------------------------------------------------------------------- /k8s-bare-metal/assets/tftpboot/ipxe.lkrn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-bare-metal/assets/tftpboot/ipxe.lkrn -------------------------------------------------------------------------------- /k8s-bare-metal/assets/tftpboot/ipxe.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-bare-metal/assets/tftpboot/ipxe.pxe -------------------------------------------------------------------------------- /k8s-bare-metal/assets/tftpboot/pxelinux.cfg/default: -------------------------------------------------------------------------------- 1 | timeout 10 2 | default iPXE 3 | 4 | LABEL iPXE 5 | MENU LABEL Booting ipxe.lkrn 6 | KERNEL ipxe.lkrn 7 | APPEND dhcp && chain http://192.168.1.250/boot.ipxe 8 | -------------------------------------------------------------------------------- /k8s-bare-metal/assets/tftpboot/undionly.kpxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-bare-metal/assets/tftpboot/undionly.kpxe -------------------------------------------------------------------------------- /k8s-bare-metal/cfssl/admin-csr.json: -------------------------------------------------------------------------------- 1 | { 2 | "CN": "admin", 3 | "hosts": [""], 4 | "key": { 5 | "algo": "rsa", 6 | "size": 2048 7 | }, 8 | "names": [ 9 | { 10 | "C": "US", 11 | "L": "New York", 12 | "O": "Mad Eden S.L", 13 | "OU": "kube-ca", 14 | "ST": "New York" 15 | } 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /k8s-bare-metal/cfssl/ca-csr.json: -------------------------------------------------------------------------------- 1 | { 2 | "CN": "kube-me", 3 | "key": { 4 | "algo": "rsa", 5 | "size": 2048 6 | }, 7 | "names": [ 8 | { 9 | "C": "US", 10 | "L": "New York", 11 | "O": "Mad Eden S.L", 12 | "OU": "kube-ca", 13 | "ST": "New York" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /k8s-bare-metal/groups/install.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "coreos-install", 3 | "name": "CoreOS Install", 4 | "profile": "install-reboot", 5 | "metadata": { 6 | "coreos_channel": "alpha", 7 | "coreos_version": "1053.2.0", 8 | "ignition_endpoint": "http://192.168.1.250/ignition", 9 | "baseurl": "http://192.168.1.250/assets/coreos" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /k8s-bare-metal/router/config/scripts/ipxe-green.conf: -------------------------------------------------------------------------------- 1 | allow bootp; 2 | allow booting; 3 | 4 | option ipxe.no-pxedhcp 1; 5 | 6 | if exists user-class and option user-class = "iPXE" { 7 | filename "http://192.168.1.250/boot.ipxe"; 8 | } elsif option arch = 00:07 { 9 | filename "ipxe.efi"; 10 | } elsif option arch = 00:00 { 11 | filename "undionly.kpxe"; 12 | } else { 13 | filename "ipxe.efi"; 14 | } 15 | 16 | next-server 192.168.1.250; -------------------------------------------------------------------------------- /k8s-dl/.gitattributes: -------------------------------------------------------------------------------- 1 | k8s-dl/src/docker/tf-models/bin/bazel filter=lfs diff=lfs merge=lfs -text 2 | k8s-dl/src/docker/tf-models/bin/bazel-real filter=lfs diff=lfs merge=lfs -text 3 | -------------------------------------------------------------------------------- /k8s-dl/img/00-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-dl/img/00-workflow.png -------------------------------------------------------------------------------- /k8s-dl/img/fs-mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-dl/img/fs-mapping.png -------------------------------------------------------------------------------- /k8s-dl/img/k8s-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-dl/img/k8s-model.png -------------------------------------------------------------------------------- /k8s-dl/img/k8s-ui-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-dl/img/k8s-ui-01.png -------------------------------------------------------------------------------- /k8s-dl/img/process-mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-dl/img/process-mapping.png -------------------------------------------------------------------------------- /k8s-dl/img/tensorboard-histograms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-dl/img/tensorboard-histograms.png -------------------------------------------------------------------------------- /k8s-dl/img/tensorboard-scalars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-dl/img/tensorboard-scalars.png -------------------------------------------------------------------------------- /k8s-dl/img/tensorboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-dl/img/tensorboard.png -------------------------------------------------------------------------------- /k8s-dl/img/tensorflow-scalars-40k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-dl/img/tensorflow-scalars-40k.png -------------------------------------------------------------------------------- /k8s-dl/src/charts/.gitignore: -------------------------------------------------------------------------------- 1 | *.tgz 2 | index.yaml 3 | -------------------------------------------------------------------------------- /k8s-dl/src/charts/dataloader/Chart.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | description: A Helm chart for a data ingest layer 3 | name: dataloader 4 | version: 0.1.0 5 | -------------------------------------------------------------------------------- /k8s-dl/src/charts/dataloader/requirements.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - condition: "" 3 | enabled: false 4 | name: efs 5 | repository: http://localhost:8879/charts 6 | tags: null 7 | version: 0.0.1 8 | digest: sha256:07fee19fe96dda67aacf1112972cce803ca35202a53b7c04eb5e55b7ddb2eb7b 9 | generated: 2017-02-27T05:14:31.319595291+01:00 10 | -------------------------------------------------------------------------------- /k8s-dl/src/charts/dataloader/requirements.yaml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: efs 3 | repository: http://localhost:8879/charts 4 | version: 0.0.1 5 | -------------------------------------------------------------------------------- /k8s-dl/src/charts/dataloader/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | This service is a download only service, which aims at emulating a batch data ingest service. There is no interaction with it. 2 | 3 | Monitor the status of the job with: 4 | 5 | kubectl logs -f $(kubectl get pod -o name -l app={{ .Values.dataLoader.service.name }}) 6 | 7 | This can take a LOT of time (about 3 days) so be patient. 8 | 9 | -------------------------------------------------------------------------------- /k8s-dl/src/charts/distributed-cnn/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /k8s-dl/src/charts/distributed-cnn/Chart.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | description: A Helm chart for a scalable Tensorflow 3 | name: distributed-cnn 4 | version: 0.1.0 5 | -------------------------------------------------------------------------------- /k8s-dl/src/charts/distributed-cnn/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | 1. Create the DNS A-records or CNAME records pointing to: 2 | 3 | for WORKER_TYPE in gpu gpu8 4 | do 5 | juju show-status kubernetes-worker-${WORKER_TYPE} --format json | \ 6 | jq --raw-output '.applications."kubernetes-worker-'${WORKER_TYPE}'".units[]."public-address' 7 | done 8 | 9 | 2. Enjoy Tensorflow on {{.Values.tensorboard.service.dns}} 10 | 11 | -------------------------------------------------------------------------------- /k8s-dl/src/charts/efs/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /k8s-dl/src/charts/efs/Chart.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | description: A Helm chart to manage EFS Storage 3 | name: efs 4 | version: 0.0.1 5 | -------------------------------------------------------------------------------- /k8s-dl/src/charts/efs/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | This chart has created a PV and a PVc to host the common data for your model, connected to an EFS volume. -------------------------------------------------------------------------------- /k8s-dl/src/charts/efs/values.yaml: -------------------------------------------------------------------------------- 1 | global: 2 | imagePullPolicy: IfNotPresent 3 | services: 4 | aws: 5 | region: us-east-1 6 | efs: 7 | id: fs-47cd610e 8 | 9 | storage: 10 | name: tensorflow-fs 11 | accessMode: ReadWriteMany 12 | pv: 13 | capacity: "900Gi" 14 | pvc: 15 | request: "750Gi" 16 | -------------------------------------------------------------------------------- /k8s-dl/src/charts/tensorflow/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /k8s-dl/src/charts/tensorflow/Chart.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | description: A Helm chart for a scalable Tensorflow 3 | name: tensorflow 4 | version: 0.1.0 5 | -------------------------------------------------------------------------------- /k8s-dl/src/charts/tensorflow/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | 1. Create the DNS A-records or CNAME records pointing to: 2 | 3 | for WORKER_TYPE in gpu gpu8 4 | do 5 | juju show-status kubernetes-worker-${WORKER_TYPE} --format json | \ 6 | jq --raw-output '.applications."kubernetes-worker-'${WORKER_TYPE}'".units[]."public-address' 7 | done 8 | 9 | 2. Enjoy Tensorflow on {{.Values.tensorboard.service.dns}} 10 | 11 | -------------------------------------------------------------------------------- /k8s-dl/src/docker/distributed-cnn/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM gcr.io/tensorflow/tensorflow:0.9.0 2 | 3 | ADD ./* ./ 4 | 5 | ENTRYPOINT ["python", "train.py"] 6 | -------------------------------------------------------------------------------- /k8s-dl/src/docker/tf-models/download.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | mkdir -p "${DATA_DIR}/checkpoints" 4 | 5 | cd "${DATA_DIR}/checkpoints" 6 | curl -O http://download.tensorflow.org/models/image/imagenet/inception-v3-2016-03-01.tar.gz 7 | tar xzf inception-v3-2016-03-01.tar.gz 8 | 9 | mkdir -p "${DATA_DIR}/${DATASET}" 10 | 11 | cd /models/inception 12 | 13 | bazel build inception/download_and_preprocess_${DATASET} 14 | 15 | bazel-bin/inception/download_and_preprocess_${DATASET} "${DATA_DIR}/${DATASET}" 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /k8s-dl/src/docker/tf-models/serve.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "starting with port=$PORT, model $MODEL_NAME and path $MODEL_PATH" 4 | 5 | /serving/bazel-bin/tensorflow_serving/model_servers/tensorflow_model_server \ 6 | --port=${PORT}\ 7 | ${BATCHING} \ 8 | --model_name=${MODEL_NAME} \ 9 | --model_base_path=${MODEL_PATH} 10 | 11 | -------------------------------------------------------------------------------- /k8s-dl/src/docker/tf-worker/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM tensorflow/tensorflow:1.0.0 2 | 3 | ADD worker.py worker.py 4 | 5 | CMD ["python", "worker.py"] 6 | -------------------------------------------------------------------------------- /k8s-dl/src/docker/tf-worker/Dockerfile.gpu: -------------------------------------------------------------------------------- 1 | FROM tensorflow/tensorflow:1.0.0-gpu 2 | 3 | ADD worker.py worker.py 4 | 5 | CMD ["python", "worker.py"] 6 | -------------------------------------------------------------------------------- /k8s-dl/src/img/auto-cuda-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-dl/src/img/auto-cuda-install.png -------------------------------------------------------------------------------- /k8s-ethereum/img/cluster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-ethereum/img/cluster.jpg -------------------------------------------------------------------------------- /k8s-ethereum/img/ethmon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-ethereum/img/ethmon.png -------------------------------------------------------------------------------- /k8s-ethereum/img/kubeui-claymore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-ethereum/img/kubeui-claymore.png -------------------------------------------------------------------------------- /k8s-ethereum/img/maas-node-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-ethereum/img/maas-node-details.png -------------------------------------------------------------------------------- /k8s-ethereum/img/maas-nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-ethereum/img/maas-nodes.png -------------------------------------------------------------------------------- /k8s-existing-env-2-elb/img/cdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-existing-env-2-elb/img/cdk.png -------------------------------------------------------------------------------- /k8s-existing-env-2-elb/img/hello-world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-existing-env-2-elb/img/hello-world.png -------------------------------------------------------------------------------- /k8s-existing-env-2-elb/src/iam/assume-role.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "2012-10-17", 3 | "Statement": [ 4 | { 5 | "Effect": "Allow", 6 | "Principal": { 7 | "Service": "ec2.amazonaws.com" 8 | }, 9 | "Action": "sts:AssumeRole" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /k8s-existing-env/img/cf-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-existing-env/img/cf-00.png -------------------------------------------------------------------------------- /k8s-existing-env/img/cf-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-existing-env/img/cf-01.png -------------------------------------------------------------------------------- /k8s-existing-env/img/cf-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-existing-env/img/cf-02.png -------------------------------------------------------------------------------- /k8s-existing-env/img/cf-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-existing-env/img/cf-03.png -------------------------------------------------------------------------------- /k8s-existing-env/img/k8s-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-existing-env/img/k8s-ui.png -------------------------------------------------------------------------------- /k8s-existing-env/img/simple-multi-subnet-vpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-existing-env/img/simple-multi-subnet-vpc.png -------------------------------------------------------------------------------- /k8s-existing-env/img/simple-multi-subnet-vpc_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-existing-env/img/simple-multi-subnet-vpc_small.png -------------------------------------------------------------------------------- /k8s-existing-env/src/azure/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "itemDisplayName": "2 tier VNet with NSGs and DMZ", 3 | "description": "This template deploys a Virtual Network with 2 subnets, 2 Network Security Groups and appropriate security rules to make the Public subnet a DMZ", 4 | "summary": "Install Virtual Network with DMZ Subnet", 5 | "githubUsername": "SaMnCo", 6 | "dateUpdated": "2015-04-10" 7 | } -------------------------------------------------------------------------------- /k8s-federation/src/manifests/kube-dns-configmap.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ConfigMap 3 | metadata: 4 | name: kube-dns 5 | namespace: kube-system 6 | data: 7 | federations: magicring=demo.madeden.net 8 | 9 | -------------------------------------------------------------------------------- /k8s-federation/src/manifests/microbots-ing.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: extensions/v1beta1 2 | kind: Ingress 3 | metadata: 4 | name: microbot 5 | spec: 6 | rules: 7 | - host: microbots.demo.madeden.net 8 | http: 9 | paths: 10 | - path: / 11 | backend: 12 | serviceName: microbot 13 | servicePort: 80 -------------------------------------------------------------------------------- /k8s-federation/src/manifests/microbots-svc.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Service 3 | metadata: 4 | name: microbot 5 | labels: 6 | app: microbot 7 | spec: 8 | ports: 9 | - port: 80 10 | protocol: TCP 11 | targetPort: 80 12 | selector: 13 | app: microbot 14 | -------------------------------------------------------------------------------- /k8s-federation/src/manifests/test-configmap.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ConfigMap 3 | metadata: 4 | name: test-configmap 5 | namespace: default 6 | data: 7 | content: ItSeemsToWork 8 | -------------------------------------------------------------------------------- /k8s-federation/src/manifests/test-ns.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: test-ns 5 | -------------------------------------------------------------------------------- /k8s-federation/src/manifests/test-secret.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Secret 3 | metadata: 4 | name: test-secret 5 | type: Opaque 6 | data: 7 | secret: Zm9vYmFyCg== -------------------------------------------------------------------------------- /k8s-gpu-cloud/03-tearing-down.md: -------------------------------------------------------------------------------- 1 | # End of the demo 2 | 3 | Whenever you feel like it, you can tear down this demo. These instances can be pricey, hence powering them down when you do not use them is good. 4 | 5 | ``` 6 | juju kill-controller aws/us-east-1 7 | ``` 8 | 9 | This will ask for confirmation then destroy everything... But now, you are just a few commands away from rebuilding it! -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/IMG_20161104_173332.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/IMG_20161104_173332.jpg -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/IMG_20161108_142646.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/IMG_20161108_142646.jpg -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/adding-4th-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/adding-4th-node.png -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/adding-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/adding-node.png -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/all-6-nodes-new-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/all-6-nodes-new-small.png -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/all-6-nodes-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/all-6-nodes-new.png -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/bootstrapping-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/bootstrapping-small.png -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/bootstrapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/bootstrapping.png -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/cluster-view-close-up-cpu-side-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/cluster-view-close-up-cpu-side-small.jpg -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/cluster-view-close-up-cpu-side.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/cluster-view-close-up-cpu-side.jpg -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/cluster-view-close-up-gpu-side-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/cluster-view-close-up-gpu-side-small.jpg -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/cluster-view-close-up-gpu-side.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/cluster-view-close-up-gpu-side.jpg -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/cluster-view-cpu-side-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/cluster-view-cpu-side-small.jpg -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/cluster-view-cpu-side.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/cluster-view-cpu-side.jpg -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/cluster-view-gpu-side-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/cluster-view-gpu-side-small.jpg -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/cluster-view-gpu-side.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/cluster-view-gpu-side.jpg -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/cluster-view-top-side.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/cluster-view-top-side.jpg -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/commisioning-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/commisioning-2.png -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/commissioning-2-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/commissioning-2-small.png -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/commissioning-nodes-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/commissioning-nodes-small.png -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/commissioning-nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/commissioning-nodes.png -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/commissioning-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/commissioning-small.png -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/commissioning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/commissioning.png -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/deploying-k8s-2-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/deploying-k8s-2-small.png -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/deploying-k8s-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/deploying-k8s-2.png -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/deploying-k8s-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/deploying-k8s-small.png -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/deploying-k8s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/deploying-k8s.png -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/nodes-ready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/nodes-ready.png -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/nuc-external-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/nuc-external-card.jpg -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/nuc-view-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/nuc-view-small.jpg -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/nuc-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/nuc-view.jpg -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/obv4-context.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/obv4-context.jpg -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/obv4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/obv4.png -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/orange-matchbox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/orange-matchbox.jpg -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/psu-cables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/psu-cables.jpg -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/scaling-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/scaling-out.png -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/video-card-view-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/video-card-view-small.jpg -------------------------------------------------------------------------------- /k8s-gpu-cluster/pics/video-card-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/pics/video-card-view.jpg -------------------------------------------------------------------------------- /k8s-gpu-cluster/src/k8s-master/etc/default/kube-apiserver: -------------------------------------------------------------------------------- 1 | # Security Context 2 | KUBE_ALLOW_PRIV="--allow-privileged=true" 3 | -------------------------------------------------------------------------------- /k8s-gpu-cluster/src/k8s-worker/etc/default/kubelet: -------------------------------------------------------------------------------- 1 | # Security Context 2 | KUBE_ALLOW_PRIV="--allow-privileged=true" 3 | 4 | # Add your own! 5 | KUBELET_ARGS="--experimental-nvidia-gpus=1 --require-kubeconfig --kubeconfig=/srv/kubernetes/config --cluster-dns=10.1.0.10 --cluster-domain=cluster.local" 6 | -------------------------------------------------------------------------------- /k8s-gpu-cluster/src/k8s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/src/k8s.yaml -------------------------------------------------------------------------------- /k8s-gpu-cluster/src/maasberry/etc/iptables.ipv4.nat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-gpu-cluster/src/maasberry/etc/iptables.ipv4.nat -------------------------------------------------------------------------------- /k8s-gpu-cluster/src/maasberry/etc/network/interfaces.d/eth1.cfg: -------------------------------------------------------------------------------- 1 | # hwaddress 00:0e:c6:c2:e6:82 2 | auto eth1 3 | iface eth1 inet static 4 | address 192.168.23.1 5 | netmask 255.255.255.0 -------------------------------------------------------------------------------- /k8s-gpu-cluster/src/maasberry/etc/sysctl.d/99-maas.conf: -------------------------------------------------------------------------------- 1 | net.ipv4.ip_forward=1 2 | -------------------------------------------------------------------------------- /k8s-on-ppc64le/pics/k8sppc64-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-on-ppc64le/pics/k8sppc64-network.png -------------------------------------------------------------------------------- /k8s-openstack/img/juju-gui-openstack-deploying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-openstack/img/juju-gui-openstack-deploying.png -------------------------------------------------------------------------------- /k8s-openstack/img/juju-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-openstack/img/juju-status.png -------------------------------------------------------------------------------- /k8s-serverless/src/kubeless/httpToKafka/http_to_kafka.py: -------------------------------------------------------------------------------- 1 | import json 2 | 3 | from kafka import KafkaProducer 4 | from kafka.errors import KafkaError 5 | 6 | producer=KafkaProducer(bootstrap_servers='kafka.kubeless:9092',value_serializer=lambda v: json.dumps(v).encode('utf-8')) 7 | 8 | def handler(context): 9 | msg = {'policy':context.json.get('policy', '0000A'),'action':context.json.get('action', 'new'),'description':context.json.get('description','N/A')} 10 | producer.send('new', msg) 11 | producer.flush() 12 | -------------------------------------------------------------------------------- /k8s-serverless/src/kubeless/httpToKafka/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "http-to-kafka", 3 | "version": "0.0.1", 4 | "description": "Simple Python function with Kubeless to publish HTTP json to Kafka", 5 | "dependencies": { 6 | "requests": "^2.18.4", 7 | "kafka-python": "^1.3.5", 8 | }, 9 | "main": "handler.py", 10 | "autor": "Mad Eden", 11 | "license": "Apache-2.0" 12 | } -------------------------------------------------------------------------------- /k8s-serverless/src/kubeless/httpToKafka/requirements.txt: -------------------------------------------------------------------------------- 1 | kafka-python==1.3.5 2 | requests==2.18.4 -------------------------------------------------------------------------------- /k8s-serverless/src/kubeless/moveToNextQueue/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "move-to-net-queue", 3 | "version": "0.0.1", 4 | "description": "Simple Python function with Kubeless to publish between Kafka topics", 5 | "dependencies": { 6 | "requests": "^2.18.4", 7 | "kafka-python": "^1.3.5", 8 | }, 9 | "main": "handler.py", 10 | "autor": "Mad Eden", 11 | "license": "Apache-2.0" 12 | } -------------------------------------------------------------------------------- /k8s-serverless/src/kubeless/moveToNextQueue/requirements.txt: -------------------------------------------------------------------------------- 1 | kafka-python==1.3.5 2 | requests==2.18.4 -------------------------------------------------------------------------------- /k8s-serverless/src/kubeless/sendSMS/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "send-sms", 3 | "version": "0.0.1", 4 | "description": "Simple Python function to send SMS via Twilio", 5 | "dependencies": { 6 | "requests": "^2.18.4", 7 | "kafka-python": "^1.3.5", 8 | "twilio": "^6.8.0" 9 | }, 10 | "main": "handler.py", 11 | "autor": "Mad Eden", 12 | "license": "Apache-2.0" 13 | } -------------------------------------------------------------------------------- /k8s-serverless/src/kubeless/sendSMS/requirements.txt: -------------------------------------------------------------------------------- 1 | kafka-python==1.3.5 2 | requests==2.18.4 3 | twilio==6.8.0 -------------------------------------------------------------------------------- /k8s-tensorflow/img/gcp-cuda-deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-tensorflow/img/gcp-cuda-deploy.png -------------------------------------------------------------------------------- /k8s-tensorflow/img/gpu-logs-from-k8s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-tensorflow/img/gpu-logs-from-k8s.png -------------------------------------------------------------------------------- /k8s-tensorflow/img/juju-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-tensorflow/img/juju-status.png -------------------------------------------------------------------------------- /k8s-tensorflow/img/kubeui-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-tensorflow/img/kubeui-all.png -------------------------------------------------------------------------------- /k8s-tensorflow/img/kubeui-pvc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-tensorflow/img/kubeui-pvc.png -------------------------------------------------------------------------------- /k8s-tensorflow/img/kubeui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-tensorflow/img/kubeui.png -------------------------------------------------------------------------------- /k8s-tensorflow/img/tensorboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-tensorflow/img/tensorboard.png -------------------------------------------------------------------------------- /k8s-tf-serving/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-tf-serving/img/.DS_Store -------------------------------------------------------------------------------- /k8s-tf-serving/img/ui-cat-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-tf-serving/img/ui-cat-03.png -------------------------------------------------------------------------------- /k8s-tf-serving/img/ui-cat-09-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-tf-serving/img/ui-cat-09-2.png -------------------------------------------------------------------------------- /k8s-tf-serving/img/ui-cat-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-tf-serving/img/ui-cat-09.png -------------------------------------------------------------------------------- /k8s-tf-serving/src/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | [ ! -x /usr/local/bin/tensorflow_model_server ] && \ 4 | chmod +x /usr/local/bin/tensorflow_model_server 5 | 6 | /usr/local/bin/tensorflow_model_server \ 7 | --port=${PORT} \ 8 | --model_name=${MODEL_NAME} \ 9 | --model_base_path=${MODEL_PATH} 10 | -------------------------------------------------------------------------------- /k8s-transcode/img/18-vs-12-concurrency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/img/18-vs-12-concurrency.png -------------------------------------------------------------------------------- /k8s-transcode/img/192-jobs-in-parallel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/img/192-jobs-in-parallel.png -------------------------------------------------------------------------------- /k8s-transcode/img/aws-duration-function_of_concurrency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/img/aws-duration-function_of_concurrency.png -------------------------------------------------------------------------------- /k8s-transcode/img/aws-vs-lxd-2c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/img/aws-vs-lxd-2c.png -------------------------------------------------------------------------------- /k8s-transcode/img/aws-vs-lxd-4c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/img/aws-vs-lxd-4c.png -------------------------------------------------------------------------------- /k8s-transcode/img/aws-vs-lxd-5c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/img/aws-vs-lxd-5c.png -------------------------------------------------------------------------------- /k8s-transcode/img/concurrency-12-cpu1500-vs-cpu1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/img/concurrency-12-cpu1500-vs-cpu1000.png -------------------------------------------------------------------------------- /k8s-transcode/img/concurrency-3-htop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/img/concurrency-3-htop.png -------------------------------------------------------------------------------- /k8s-transcode/img/cpu-pinning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/img/cpu-pinning.png -------------------------------------------------------------------------------- /k8s-transcode/img/dashboard-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/img/dashboard-48.png -------------------------------------------------------------------------------- /k8s-transcode/img/grafana-cluster-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/img/grafana-cluster-view.png -------------------------------------------------------------------------------- /k8s-transcode/img/half-a-day-testing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/img/half-a-day-testing.png -------------------------------------------------------------------------------- /k8s-transcode/img/heatmap-cpu-lower-than-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/img/heatmap-cpu-lower-than-1.png -------------------------------------------------------------------------------- /k8s-transcode/img/htop-lxd-5-cpus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/img/htop-lxd-5-cpus.png -------------------------------------------------------------------------------- /k8s-transcode/img/htop-lxd-high-concurrency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/img/htop-lxd-high-concurrency.png -------------------------------------------------------------------------------- /k8s-transcode/img/image (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/img/image (1).png -------------------------------------------------------------------------------- /k8s-transcode/img/influence-ram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/img/influence-ram.png -------------------------------------------------------------------------------- /k8s-transcode/img/k8s-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/img/k8s-01.png -------------------------------------------------------------------------------- /k8s-transcode/img/k8s-full-load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/img/k8s-full-load.png -------------------------------------------------------------------------------- /k8s-transcode/img/k8s-full-usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/img/k8s-full-usage.png -------------------------------------------------------------------------------- /k8s-transcode/img/lxd-and-control-plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/img/lxd-and-control-plane.png -------------------------------------------------------------------------------- /k8s-transcode/img/lxd-fencing-cpus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/img/lxd-fencing-cpus.png -------------------------------------------------------------------------------- /k8s-transcode/img/performance-penalty-fct-concurrency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/img/performance-penalty-fct-concurrency.png -------------------------------------------------------------------------------- /k8s-transcode/img/running-96-pods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/img/running-96-pods.png -------------------------------------------------------------------------------- /k8s-transcode/img/time-slicing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/img/time-slicing.png -------------------------------------------------------------------------------- /k8s-transcode/src/.gitignore: -------------------------------------------------------------------------------- 1 | sintel-2048-surround.mp4 2 | -------------------------------------------------------------------------------- /k8s-transcode/src/logs/aws-16cx1-p2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/src/logs/aws-16cx1-p2.tar.gz -------------------------------------------------------------------------------- /k8s-transcode/src/logs/aws-16cx1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/src/logs/aws-16cx1.tar.gz -------------------------------------------------------------------------------- /k8s-transcode/src/logs/aws-16xc1-p1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/src/logs/aws-16xc1-p1.tar.gz -------------------------------------------------------------------------------- /k8s-transcode/src/logs/aws.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/src/logs/aws.tar.gz -------------------------------------------------------------------------------- /k8s-transcode/src/logs/lxd-3x4c.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/src/logs/lxd-3x4c.tar.gz -------------------------------------------------------------------------------- /k8s-transcode/src/logs/lxd-3x5c-burst.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/src/logs/lxd-3x5c-burst.tar.gz -------------------------------------------------------------------------------- /k8s-transcode/src/logs/lxd-3x5c-variations.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/src/logs/lxd-3x5c-variations.tar.gz -------------------------------------------------------------------------------- /k8s-transcode/src/logs/lxd-3x5c.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/src/logs/lxd-3x5c.tar.gz -------------------------------------------------------------------------------- /k8s-transcode/src/logs/lxd-4x2c.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/src/logs/lxd-4x2c.tar.gz -------------------------------------------------------------------------------- /k8s-transcode/src/logs/lxd-4x3c.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/src/logs/lxd-4x3c.tar.gz -------------------------------------------------------------------------------- /k8s-transcode/src/logs/lxd-4x4c.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeden/blogposts/3f34e64768a91db6eec0633eb8f7378fa900f66c/k8s-transcode/src/logs/lxd-4x4c.tar.gz -------------------------------------------------------------------------------- /k8s-transcode/src/transcoder/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /k8s-transcode/src/transcoder/Chart.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | description: Running concurrent transcoding jobs in k8s 3 | name: transcoder 4 | version: 0.2.0 5 | -------------------------------------------------------------------------------- /k8s-transcode/src/transcoder/values.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 8 3 | # Separator name 4 | type: bm 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: true 12 | resources: 13 | requests: 14 | cpu: "4" 15 | memory: 8Gi 16 | max: 17 | cpu: "16" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-aws-16cx1-1-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 1 3 | # Separator name 4 | type: aws-16cx1 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: true 12 | resources: 13 | requests: 14 | cpu: "1" 15 | memory: 2Gi 16 | max: 17 | cpu: "16" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-aws-16cx1-2-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 1 3 | # Separator name 4 | type: aws-16cx1 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: true 12 | resources: 13 | requests: 14 | cpu: "2" 15 | memory: 2Gi 16 | max: 17 | cpu: "16" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-aws-16cx1-3-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 1 3 | # Separator name 4 | type: aws-16cx1 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: true 12 | resources: 13 | requests: 14 | cpu: "3" 15 | memory: 2Gi 16 | max: 17 | cpu: "16" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-aws-16cx1-4-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 1 3 | # Separator name 4 | type: aws-16cx1 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: true 12 | resources: 13 | requests: 14 | cpu: "4" 15 | memory: 2Gi 16 | max: 17 | cpu: "16" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-aws-16cx1-5-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 1 3 | # Separator name 4 | type: aws-16cx1 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: true 12 | resources: 13 | requests: 14 | cpu: "5" 15 | memory: 2Gi 16 | max: 17 | cpu: "16" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-aws-16cx1-6-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 1 3 | # Separator name 4 | type: aws-16cx1 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: true 12 | resources: 13 | requests: 14 | cpu: "6" 15 | memory: 2Gi 16 | max: 17 | cpu: "16" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-aws-16cx1-7-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 1 3 | # Separator name 4 | type: aws-16cx1 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: true 12 | resources: 13 | requests: 14 | cpu: "7" 15 | memory: 2Gi 16 | max: 17 | cpu: "16" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-aws-2-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 2Gi 11 | limits: 12 | cpu: "2" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-aws-3-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 2Gi 11 | limits: 12 | cpu: "3" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-aws-4-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "4" 10 | memory: 2Gi 11 | limits: 12 | cpu: "4" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-aws-5-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "5" 10 | memory: 2Gi 11 | limits: 12 | cpu: "5" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-aws-6-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "6" 10 | memory: 2Gi 11 | limits: 12 | cpu: "6" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-aws-7-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "7" 10 | memory: 2Gi 11 | limits: 12 | cpu: "7" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-awslxd-2-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: awslxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 2Gi 11 | limits: 12 | cpu: "2" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-awslxd-3-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: awslxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 2Gi 11 | limits: 12 | cpu: "3" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-awslxd-4-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: awslxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "4" 10 | memory: 2Gi 11 | limits: 12 | cpu: "4" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-awslxd-5-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: awslxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "5" 10 | memory: 2Gi 11 | limits: 12 | cpu: "5" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-bm-0.8-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 1Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-bm-0.8-16.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 16Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 16Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-bm-0.8-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 2Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-bm-0.8-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-bm-0.8-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 8Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-bm-1-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 1Gi 11 | limits: 12 | cpu: "1" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-bm-1-16.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 16Gi 11 | limits: 12 | cpu: "1" 13 | memory: 16Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-bm-1-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 2Gi 11 | limits: 12 | cpu: "1" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-bm-1-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 4Gi 11 | limits: 12 | cpu: "1" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-bm-1-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 8Gi 11 | limits: 12 | cpu: "1" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-bm-1.5-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1.5" 10 | memory: 1Gi 11 | limits: 12 | cpu: "1.5" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-bm-1.5-16.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1.5" 10 | memory: 16Gi 11 | limits: 12 | cpu: "1.5" 13 | memory: 16Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-bm-1.5-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1.5" 10 | memory: 2Gi 11 | limits: 12 | cpu: "1.5" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-bm-1.5-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1.5" 10 | memory: 4Gi 11 | limits: 12 | cpu: "1.5" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-bm-1.5-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1.5" 10 | memory: 8Gi 11 | limits: 12 | cpu: "1.5" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-bm-2-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 1Gi 11 | limits: 12 | cpu: "2" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-bm-2-16.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 16Gi 11 | limits: 12 | cpu: "2" 13 | memory: 16Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-bm-2-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 2Gi 11 | limits: 12 | cpu: "2" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-bm-2-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 4Gi 11 | limits: 12 | cpu: "2" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-bm-2-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 8Gi 11 | limits: 12 | cpu: "2" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-bm-3-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 1Gi 11 | limits: 12 | cpu: "3" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-bm-3-16.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 16Gi 11 | limits: 12 | cpu: "3" 13 | memory: 16Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-bm-3-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 2Gi 11 | limits: 12 | cpu: "3" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-bm-3-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 4Gi 11 | limits: 12 | cpu: "3" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-bm-3-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 8Gi 11 | limits: 12 | cpu: "3" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd-0.8-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 1Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd-0.8-16.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 16Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 16Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd-0.8-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 2Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd-0.8-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd-0.8-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 8Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd-1-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 1Gi 11 | limits: 12 | cpu: "1" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd-1-16.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 16Gi 11 | limits: 12 | cpu: "1" 13 | memory: 16Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd-1-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 2Gi 11 | limits: 12 | cpu: "1" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd-1-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 4Gi 11 | limits: 12 | cpu: "1" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd-1-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 8Gi 11 | limits: 12 | cpu: "1" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd-1.5-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1.5" 10 | memory: 1Gi 11 | limits: 12 | cpu: "1.5" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd-1.5-16.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1.5" 10 | memory: 16Gi 11 | limits: 12 | cpu: "1.5" 13 | memory: 16Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd-1.5-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1.5" 10 | memory: 2Gi 11 | limits: 12 | cpu: "1.5" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd-1.5-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1.5" 10 | memory: 4Gi 11 | limits: 12 | cpu: "1.5" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd-1.5-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1.5" 10 | memory: 8Gi 11 | limits: 12 | cpu: "1.5" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd-2-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 1Gi 11 | limits: 12 | cpu: "2" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd-2-16.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 16Gi 11 | limits: 12 | cpu: "2" 13 | memory: 16Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd-2-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 2Gi 11 | limits: 12 | cpu: "2" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd-2-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 4Gi 11 | limits: 12 | cpu: "2" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd-2-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 8Gi 11 | limits: 12 | cpu: "2" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd-3-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 1Gi 11 | limits: 12 | cpu: "3" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd-3-16.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 16Gi 11 | limits: 12 | cpu: "3" 13 | memory: 16Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd-3-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 2Gi 11 | limits: 12 | cpu: "3" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd-3-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 4Gi 11 | limits: 12 | cpu: "3" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd-3-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 1 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 8Gi 11 | limits: 12 | cpu: "3" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd5-1-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 1 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "1" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd5-2-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 1 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "2" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd5-3-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 1 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "3" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd5-4-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 1 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "4" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-1-lxd5-5-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 1 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "5" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-bm-0.1-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.1" 10 | memory: 1Gi 11 | limits: 12 | cpu: "0.1" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-bm-0.1-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.1" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.1" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-bm-0.2-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.2" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.2" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-bm-0.4-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.4" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.4" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-bm-0.8-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 1Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-bm-0.8-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 2Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-bm-0.8-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-bm-0.8-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 8Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-bm-1-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 1Gi 11 | limits: 12 | cpu: "1" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-bm-1-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 2Gi 11 | limits: 12 | cpu: "1" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-bm-1-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 4Gi 11 | limits: 12 | cpu: "1" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-bm-1-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 8Gi 11 | limits: 12 | cpu: "1" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-bm-1.5-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1.5" 10 | memory: 1Gi 11 | limits: 12 | cpu: "1.5" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-bm-1.5-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1.5" 10 | memory: 2Gi 11 | limits: 12 | cpu: "1.5" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-bm-1.5-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1.5" 10 | memory: 4Gi 11 | limits: 12 | cpu: "1.5" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-bm-1.5-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1.5" 10 | memory: 8Gi 11 | limits: 12 | cpu: "1.5" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-lxd-0.1-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.1" 10 | memory: 1Gi 11 | limits: 12 | cpu: "0.1" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-lxd-0.1-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.1" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.1" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-lxd-0.2-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.2" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.2" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-lxd-0.4-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.4" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.4" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-lxd-0.8-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 1Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-lxd-0.8-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 2Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-lxd-0.8-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-lxd-0.8-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 8Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-lxd-1-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 1Gi 11 | limits: 12 | cpu: "1" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-lxd-1-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 2Gi 11 | limits: 12 | cpu: "1" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-lxd-1-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 4Gi 11 | limits: 12 | cpu: "1" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-lxd-1-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 8Gi 11 | limits: 12 | cpu: "1" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-lxd-1.5-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1.5" 10 | memory: 1Gi 11 | limits: 12 | cpu: "1.5" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-lxd-1.5-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1.5" 10 | memory: 2Gi 11 | limits: 12 | cpu: "1.5" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-lxd-1.5-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1.5" 10 | memory: 4Gi 11 | limits: 12 | cpu: "1.5" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-12-lxd-1.5-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 12 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1.5" 10 | memory: 8Gi 11 | limits: 12 | cpu: "1.5" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-18-bm-0.1-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 18 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.1" 10 | memory: 1Gi 11 | limits: 12 | cpu: "0.1" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-18-bm-0.1-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 18 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.1" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.1" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-18-bm-0.2-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 18 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.2" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.2" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-18-bm-0.4-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 18 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.4" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.4" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-18-bm-0.8-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 18 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 1Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-18-bm-0.8-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 18 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 2Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-18-bm-0.8-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 18 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-18-bm-0.8-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 18 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 8Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-18-bm-1-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 18 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 1Gi 11 | limits: 12 | cpu: "1" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-18-bm-1-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 18 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 2Gi 11 | limits: 12 | cpu: "1" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-18-bm-1-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 18 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 4Gi 11 | limits: 12 | cpu: "1" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-18-bm-1-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 18 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 8Gi 11 | limits: 12 | cpu: "1" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-18-lxd-0.1-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 18 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.1" 10 | memory: 1Gi 11 | limits: 12 | cpu: "0.1" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-18-lxd-0.1-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 18 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.1" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.1" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-18-lxd-0.2-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 18 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.2" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.2" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-18-lxd-0.4-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 18 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.4" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.4" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-18-lxd-0.8-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 18 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 1Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-18-lxd-0.8-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 18 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 2Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-18-lxd-0.8-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 18 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-18-lxd-0.8-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 18 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 8Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-18-lxd-1-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 18 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 1Gi 11 | limits: 12 | cpu: "1" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-18-lxd-1-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 18 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 2Gi 11 | limits: 12 | cpu: "1" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-18-lxd-1-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 18 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 4Gi 11 | limits: 12 | cpu: "1" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-18-lxd-1-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 18 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 8Gi 11 | limits: 12 | cpu: "1" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-192-bm-0.1-0.8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 192 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.1" 10 | memory: 0.8Gi 11 | limits: 12 | cpu: "0.1" 13 | memory: 768Mi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-192-lxd-0.1-0.8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 192 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.1" 10 | memory: 0.8Gi 11 | limits: 12 | cpu: "0.1" 13 | memory: 0.8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-2-aws-16cx1-1-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 2 3 | # Separator name 4 | type: aws-16cx1 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: true 12 | resources: 13 | requests: 14 | cpu: "1" 15 | memory: 2Gi 16 | max: 17 | cpu: "16" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-2-aws-16cx1-2-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 2 3 | # Separator name 4 | type: aws-16cx1 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: true 12 | resources: 13 | requests: 14 | cpu: "2" 15 | memory: 2Gi 16 | max: 17 | cpu: "16" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-2-aws-16cx1-3-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 2 3 | # Separator name 4 | type: aws-16cx1 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: true 12 | resources: 13 | requests: 14 | cpu: "3" 15 | memory: 2Gi 16 | max: 17 | cpu: "16" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-2-aws-16cx1-4-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 2 3 | # Separator name 4 | type: aws-16cx1 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: true 12 | resources: 13 | requests: 14 | cpu: "4" 15 | memory: 2Gi 16 | max: 17 | cpu: "16" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-2-aws-16cx1-5-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 2 3 | # Separator name 4 | type: aws-16cx1 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: true 12 | resources: 13 | requests: 14 | cpu: "5" 15 | memory: 2Gi 16 | max: 17 | cpu: "16" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-2-aws-2-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 2 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 2Gi 11 | limits: 12 | cpu: "2" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-2-aws-3-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 2 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 2Gi 11 | limits: 12 | cpu: "3" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-2-aws-4-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 2 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "4" 10 | memory: 2Gi 11 | limits: 12 | cpu: "4" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-2-aws-5-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 2 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "5" 10 | memory: 2Gi 11 | limits: 12 | cpu: "5" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-2-aws-6-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 2 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "6" 10 | memory: 2Gi 11 | limits: 12 | cpu: "6" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-2-aws-7-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 2 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "7" 10 | memory: 2Gi 11 | limits: 12 | cpu: "7" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-2-awslxd-2-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 2 5 | type: awslxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 2Gi 11 | limits: 12 | cpu: "2" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-2-awslxd-3-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 2 5 | type: awslxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 2Gi 11 | limits: 12 | cpu: "3" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-2-awslxd-4-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 2 5 | type: awslxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "4" 10 | memory: 2Gi 11 | limits: 12 | cpu: "4" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-2-awslxd-5-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 2 5 | type: awslxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "5" 10 | memory: 2Gi 11 | limits: 12 | cpu: "5" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-2-lxd5-1-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 2 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "1" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-2-lxd5-2-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 2 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "2" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-2-lxd5-3-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 2 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "3" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-2-lxd5-4-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 2 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "4" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-2-lxd5-5-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 2 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "5" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-24-bm-0.1-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 24 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.1" 10 | memory: 1Gi 11 | limits: 12 | cpu: "0.1" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-24-bm-0.1-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 24 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.1" 10 | memory: 2Gi 11 | limits: 12 | cpu: "0.1" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-24-bm-0.2-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 24 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.2" 10 | memory: 2Gi 11 | limits: 12 | cpu: "0.2" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-24-bm-0.4-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 24 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.4" 10 | memory: 1Gi 11 | limits: 12 | cpu: "0.4" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-24-bm-0.4-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 24 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.4" 10 | memory: 2Gi 11 | limits: 12 | cpu: "0.4" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-24-bm-0.4-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 24 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.4" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.4" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-24-bm-0.8-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 24 5 | type: bm2 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 1Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-24-bm-0.8-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 24 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 2Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-24-bm-0.8-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 24 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-24-lxd-0.1-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 24 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.1" 10 | memory: 1Gi 11 | limits: 12 | cpu: "0.1" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-24-lxd-0.1-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 24 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.1" 10 | memory: 2Gi 11 | limits: 12 | cpu: "0.1" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-24-lxd-0.2-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 24 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.2" 10 | memory: 2Gi 11 | limits: 12 | cpu: "0.2" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-24-lxd-0.4-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 24 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.4" 10 | memory: 1Gi 11 | limits: 12 | cpu: "0.4" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-24-lxd-0.4-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 24 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.4" 10 | memory: 2Gi 11 | limits: 12 | cpu: "0.4" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-24-lxd-0.4-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 24 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.4" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.4" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-24-lxd-0.8-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 24 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 1Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-24-lxd-0.8-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 24 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 2Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-24-lxd-0.8-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 24 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-3-aws-2-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 3 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 2Gi 11 | limits: 12 | cpu: "2" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-3-aws-3-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 3 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 2Gi 11 | limits: 12 | cpu: "3" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-3-aws-4-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 3 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "4" 10 | memory: 2Gi 11 | limits: 12 | cpu: "4" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-3-aws-5-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 3 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "5" 10 | memory: 2Gi 11 | limits: 12 | cpu: "5" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-3-aws-6-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 3 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "6" 10 | memory: 2Gi 11 | limits: 12 | cpu: "6" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-3-aws-7-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 3 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "7" 10 | memory: 2Gi 11 | limits: 12 | cpu: "7" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-3-awslxd-2-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 3 5 | type: awslxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 2Gi 11 | limits: 12 | cpu: "2" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-3-awslxd-3-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 3 5 | type: awslxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 2Gi 11 | limits: 12 | cpu: "3" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-3-awslxd-4-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 3 5 | type: awslxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "4" 10 | memory: 2Gi 11 | limits: 12 | cpu: "4" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-3-awslxd-5-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 3 5 | type: awslxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "5" 10 | memory: 2Gi 11 | limits: 12 | cpu: "5" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-3-lxd5-1-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 3 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "1" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-3-lxd5-2-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 3 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "2" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-3-lxd5-3-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 3 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "3" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-3-lxd5-4-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 3 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "4" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-3-lxd5-5-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 3 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "5" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-4-aws-2-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 4 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 2Gi 11 | limits: 12 | cpu: "2" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-4-aws-3-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 4 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 2Gi 11 | limits: 12 | cpu: "3" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-4-aws-4-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 4 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "4" 10 | memory: 2Gi 11 | limits: 12 | cpu: "4" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-4-aws-5-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 4 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "5" 10 | memory: 2Gi 11 | limits: 12 | cpu: "5" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-4-aws-6-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 4 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "6" 10 | memory: 2Gi 11 | limits: 12 | cpu: "6" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-4-aws-7-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 4 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "7" 10 | memory: 2Gi 11 | limits: 12 | cpu: "7" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-4-awslxd-2-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 4 5 | type: awslxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 2Gi 11 | limits: 12 | cpu: "2" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-4-awslxd-3-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 4 5 | type: awslxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 2Gi 11 | limits: 12 | cpu: "3" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-4-awslxd-4-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 4 5 | type: awslxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "4" 10 | memory: 2Gi 11 | limits: 12 | cpu: "4" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-4-awslxd-5-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 4 5 | type: awslxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "5" 10 | memory: 2Gi 11 | limits: 12 | cpu: "5" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-4-lxd5-1-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 4 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "1" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-4-lxd5-2-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 4 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "2" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-4-lxd5-3-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 4 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "3" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-4-lxd5-4-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 4 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "4" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-4-lxd5-5-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 4 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "5" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-48-bm-0.1-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 48 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.1" 10 | memory: 1Gi 11 | limits: 12 | cpu: "0.1" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-48-bm-0.1-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 48 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.1" 10 | memory: 2Gi 11 | limits: 12 | cpu: "0.1" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-48-bm-0.2-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 48 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.2" 10 | memory: 2Gi 11 | limits: 12 | cpu: "0.2" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-48-bm-0.4-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 48 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.4" 10 | memory: 1Gi 11 | limits: 12 | cpu: "0.4" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-48-bm-0.4-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 48 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.4" 10 | memory: 2Gi 11 | limits: 12 | cpu: "0.4" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-48-bm-0.4-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 48 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.4" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.4" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-48-lxd-0.1-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 48 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.1" 10 | memory: 1Gi 11 | limits: 12 | cpu: "0.1" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-48-lxd-0.1-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 48 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.1" 10 | memory: 2Gi 11 | limits: 12 | cpu: "0.1" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-48-lxd-0.2-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 48 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.2" 10 | memory: 2Gi 11 | limits: 12 | cpu: "0.2" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-48-lxd-0.4-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 48 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.4" 10 | memory: 1Gi 11 | limits: 12 | cpu: "0.4" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-48-lxd-0.4-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 48 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.4" 10 | memory: 2Gi 11 | limits: 12 | cpu: "0.4" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-48-lxd-0.4-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 48 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.4" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.4" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-5-aws-2-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 5 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 2Gi 11 | limits: 12 | cpu: "2" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-5-aws-3-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 5 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 2Gi 11 | limits: 12 | cpu: "3" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-5-aws-4-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 5 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "4" 10 | memory: 2Gi 11 | limits: 12 | cpu: "4" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-5-aws-5-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 5 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "5" 10 | memory: 2Gi 11 | limits: 12 | cpu: "5" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-5-aws-6-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 5 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "6" 10 | memory: 2Gi 11 | limits: 12 | cpu: "6" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-5-awslxd-2-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 5 5 | type: awslxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 2Gi 11 | limits: 12 | cpu: "2" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-5-awslxd-3-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 5 5 | type: awslxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 2Gi 11 | limits: 12 | cpu: "3" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-5-awslxd-4-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 5 5 | type: awslxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "4" 10 | memory: 2Gi 11 | limits: 12 | cpu: "4" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-5-awslxd-5-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 5 5 | type: awslxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "5" 10 | memory: 2Gi 11 | limits: 12 | cpu: "5" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-5-lxd5-1-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 5 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "1" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-5-lxd5-2-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 5 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "2" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-5-lxd5-3-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 5 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "3" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-5-lxd5-4-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 5 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "4" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-5-lxd5-5-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 5 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "5" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-aws-2-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 2Gi 11 | limits: 12 | cpu: "2" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-aws-3-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 2Gi 11 | limits: 12 | cpu: "3" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-aws-4-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "4" 10 | memory: 2Gi 11 | limits: 12 | cpu: "4" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-aws-5-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "5" 10 | memory: 2Gi 11 | limits: 12 | cpu: "5" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-awslxd-2-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: awslxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 2Gi 11 | limits: 12 | cpu: "2" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-awslxd-3-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: awslxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 2Gi 11 | limits: 12 | cpu: "3" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-awslxd-4-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: awslxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "4" 10 | memory: 2Gi 11 | limits: 12 | cpu: "4" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-awslxd-5-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: awslxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "5" 10 | memory: 2Gi 11 | limits: 12 | cpu: "5" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-bm-0.1-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.1" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.1" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-bm-0.2-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.2" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.2" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-bm-0.4-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.4" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.4" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-bm-0.8-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 1Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-bm-0.8-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 2Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-bm-0.8-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-bm-0.8-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 8Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-bm-1-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 1Gi 11 | limits: 12 | cpu: "1" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-bm-1-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 2Gi 11 | limits: 12 | cpu: "1" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-bm-1-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 4Gi 11 | limits: 12 | cpu: "1" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-bm-1-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 8Gi 11 | limits: 12 | cpu: "1" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-bm-1.5-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1.5" 10 | memory: 1Gi 11 | limits: 12 | cpu: "1.5" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-bm-1.5-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1.5" 10 | memory: 2Gi 11 | limits: 12 | cpu: "1.5" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-bm-1.5-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1.5" 10 | memory: 4Gi 11 | limits: 12 | cpu: "1.5" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-bm-1.5-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1.5" 10 | memory: 8Gi 11 | limits: 12 | cpu: "1.5" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-bm-2-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 1Gi 11 | limits: 12 | cpu: "2" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-bm-2-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 2Gi 11 | limits: 12 | cpu: "2" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-bm-2-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 4Gi 11 | limits: 12 | cpu: "2" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-bm-2-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 8Gi 11 | limits: 12 | cpu: "2" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-bm-3-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 1Gi 11 | limits: 12 | cpu: "3" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-bm-3-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 2Gi 11 | limits: 12 | cpu: "3" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-bm-3-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 4Gi 11 | limits: 12 | cpu: "3" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-bm-3-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 8Gi 11 | limits: 12 | cpu: "3" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd-0.1-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.1" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.1" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd-0.2-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.2" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.2" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd-0.4-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.4" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.4" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd-0.8-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 1Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd-0.8-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 2Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd-0.8-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 4Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd-0.8-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.8" 10 | memory: 8Gi 11 | limits: 12 | cpu: "0.8" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd-1-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 1Gi 11 | limits: 12 | cpu: "1" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd-1-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 2Gi 11 | limits: 12 | cpu: "1" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd-1-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 4Gi 11 | limits: 12 | cpu: "1" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd-1-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1" 10 | memory: 8Gi 11 | limits: 12 | cpu: "1" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd-1.5-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1.5" 10 | memory: 1Gi 11 | limits: 12 | cpu: "1.5" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd-1.5-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1.5" 10 | memory: 2Gi 11 | limits: 12 | cpu: "1.5" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd-1.5-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1.5" 10 | memory: 4Gi 11 | limits: 12 | cpu: "1.5" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd-1.5-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "1.5" 10 | memory: 8Gi 11 | limits: 12 | cpu: "1.5" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd-2-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 1Gi 11 | limits: 12 | cpu: "2" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd-2-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 2Gi 11 | limits: 12 | cpu: "2" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd-2-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 4Gi 11 | limits: 12 | cpu: "2" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd-2-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 8Gi 11 | limits: 12 | cpu: "2" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd-3-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 1Gi 11 | limits: 12 | cpu: "3" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd-3-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 2Gi 11 | limits: 12 | cpu: "3" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd-3-4.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 4Gi 11 | limits: 12 | cpu: "3" 13 | memory: 4Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd-3-8.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 6 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 8Gi 11 | limits: 12 | cpu: "3" 13 | memory: 8Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd5-1-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 6 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "1" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd5-2-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 6 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "2" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd5-3-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 6 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "3" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd5-4-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 6 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "4" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-6-lxd5-5-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 6 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "5" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-7-aws-2-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 7 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 2Gi 11 | limits: 12 | cpu: "2" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-7-aws-3-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 7 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 2Gi 11 | limits: 12 | cpu: "3" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-7-aws-4-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 7 5 | type: aws 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "4" 10 | memory: 2Gi 11 | limits: 12 | cpu: "4" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-7-awslxd-2-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 7 5 | type: awslxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "2" 10 | memory: 2Gi 11 | limits: 12 | cpu: "2" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-7-awslxd-3-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 7 5 | type: awslxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "3" 10 | memory: 2Gi 11 | limits: 12 | cpu: "3" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-7-awslxd-4-2.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 7 5 | type: awslxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "4" 10 | memory: 2Gi 11 | limits: 12 | cpu: "4" 13 | memory: 2Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-7-lxd5-1-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 7 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "1" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-7-lxd5-2-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 7 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "2" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-7-lxd5-3-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 7 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "3" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-7-lxd5-4-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 7 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "4" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-7-lxd5-5-2.yaml: -------------------------------------------------------------------------------- 1 | # Number of // tasks 2 | parallelism: 7 3 | # Separator name 4 | type: lxd5 5 | # Do we want several input files 6 | # if yes, the chart will use source${i}.mp4 with up to 24 sources 7 | multiSource: false 8 | # If not multi source, name of the default file 9 | defaultSource: sintel_trailer-1080p.mp4 10 | # Do we want to burst. If yes, resource limit will double request. 11 | burst: false 12 | resources: 13 | requests: 14 | cpu: "5" 15 | memory: 2Gi 16 | max: 17 | cpu: "4" 18 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-96-bm-0.1-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 96 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.1" 10 | memory: 1Gi 11 | limits: 12 | cpu: "0.1" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-96-bm-0.2-1.5.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 96 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.2" 10 | memory: 1.5Gi 11 | limits: 12 | cpu: "0.2" 13 | memory: 1.5Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-96-bm-0.2-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 96 5 | type: bm 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.2" 10 | memory: 1Gi 11 | limits: 12 | cpu: "0.2" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-96-lxd-0.1-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 96 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.1" 10 | memory: 1Gi 11 | limits: 12 | cpu: "0.1" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-96-lxd-0.2-1.5.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 96 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.2" 10 | memory: 1.5Gi 11 | limits: 12 | cpu: "0.2" 13 | memory: 1.5Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-transcode/src/values/values-96-lxd-0.2-1.yaml: -------------------------------------------------------------------------------- 1 | # Default values for transcoder. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | parallelism: 96 5 | type: lxd 6 | source: sintel_trailer-1080p.mp4 7 | resources: 8 | requests: 9 | cpu: "0.2" 10 | memory: 1Gi 11 | limits: 12 | cpu: "0.2" 13 | memory: 1Gi 14 | 15 | -------------------------------------------------------------------------------- /k8s-using-efs/src/pv.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: PersistentVolume 3 | metadata: 4 | name: efsvol 5 | spec: 6 | capacity: 7 | storage: 100Gi 8 | accessModes: 9 | - ReadWriteMany 10 | nfs: 11 | server: fs-69de7c20.efs.us-east-1.amazonaws.com 12 | path: "/" -------------------------------------------------------------------------------- /k8s-using-efs/src/pvc.yaml: -------------------------------------------------------------------------------- 1 | kind: PersistentVolumeClaim 2 | apiVersion: v1 3 | metadata: 4 | name: efsvol 5 | spec: 6 | accessModes: 7 | - ReadWriteMany 8 | resources: 9 | requests: 10 | storage: 50Gi --------------------------------------------------------------------------------