This tutorial provides step by step process to run concourse on vSphere Integrated Containers. Running Concourse on VIC Step 1: Creating volumes for containers docker volume create --opt Capacity=1GB --name postgres docker volume create --opt Capacity=4GB --name concourse-keys docker volume create --opt Capacity=4GB --name worker-state Step 2: Create docker network docker network create concourse-net Step 3: Run the concourse-db container docker run --name concourse-db --net=concourse-net -h concourse-postgres -v postgres:/var/lib/postgresql/data -p 5432:5432 -e POSTGRES USER=postgres -e POSTGRES PASSWORD=vmware -e POSTGRES DB=atc -d postgres Step 4: Run the Concourse Container Change the external url in the command below to the fqdn/ip of your VCH
vic-product-master.zip
Automating Selenium Grid with vSphere Integrated Containers This is a simple docker-compose file that deploys a sample grid with one hub and one chrome and firefox node
Tutorial for running Zalenium in Docker Container Host (DCH) Running Zalenium in Docker Container Host (DCH) Step 1: Create a volume for the DCH $ docker volume create --opt Capacity=20GB --name zalenium-dch-disk Step 2: Provision the DCH Change the "vic.tpm.local" to your harbor registry's address
Treating Containers as First-Class Citizens is what vSphere Integrated Containers can offer to IT-(Dev)Ops Teams through instantiating a Container-Image as a Virtual Machine
Monitoring-Container-VMs-with-vRealize-Operations-Manager-master.zip
XaaS blueprint in vRealize Automation to create a fast self-service offering of Virtual Container Hosts. For the list of steps and tutorial please take a look at this blog post: https://blogs.vmware.com/cloudnative/2017/11/07/using-vrealize-automation-deploy-vmware-virtual-container-hosts/ #vRealizeOrchestratorPlug-inSDK #vic #vRealizeAutomation #vmcode-cna-devcenter #vROWorkflow #Apache2.0 #vsphereintegratedcontainers
XaaS-blueprint-to-deploy-a-Virtual-Container-Host-on-vSphere-master.zip
1 Comment - no search term matches found in comments.
Authored by Riaz Mohamed and Raghu Pemmaraju In this document, we focus on how to leverage the micro-segmentation feature within NSX-T to provide workload isolation. NSX-T comes with a distributed firewall that can provide complete control of both North-South Traffic but also East-West...
nsxtk8smicrosegmentation-master.zip
Trivy is a simple and comprehensive vulnerability scanner for containers developed by Aqua Security. To see the complete list of installation instructions and an example scan with Trivy, please visit https://nosolovirtual.com/harbor-registro-y-escaner-de-vulnerabilidades-de-imagenes-docker/ #vsphereintegratedcontainers #registry #VMCPKS-Deprecated #vSphereIntegratedContainers(VIC) #HArbor #Apache2.0 #containers #ShellScript
install_harbor.sh
Create a volume for the portainer to store data $ docker volume create portainer data docker volume ls DRIVER VOLUME NAME vsphere portainer data Instantiate the Portainer Now that the volume is create, instantiate the container using the following command. Change the variables(W.X.Y.Z) to your VCH IP Address $ docker run -d -p 9000:9000 --name portainer --restart always -v portainer data:/data portainer/portainer -H tcp://W.X.Y.Z:2375 - "-p" flag is mapping the port 9000 on VCH to port 9000 on the portainer container - "-v" flag is adding a volume - "-H" flag is passing the remote Host flag to the portainer so that portainer can access the docker socket of VCH to fetch data Verify that the Portainer container is running $ docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES bca7a78c9b6f portainer/portainer "/portainer -H tcp:/…" 56 seconds ago Up 21 seconds 10.40.206.184:9000->9000/tcp portainer Access the UI #vsphereintegratedcontainers #vic #portainer #ShellScript #Apache2.0 #vSphereIntegratedContainers(VIC)
1 Comment - Connection failed when try to access to http://X.X.X.X:9000 , even if the container is running
Harbor is an Open Source Project that is sponsored by VMware and is currently being sandboxed by the CNCF. It's a container registry that has all the bells and whistles that include Clair for CVE (critical vulnerability) scanning and Notary for image signing
install.sh
Container Storage Interface (CSI) driver for vSphere 6.x/7.x and OpenShift Container Platform 4.x This repository provides scripts for deploying the vSphere CSI provider on an OCP environment
vSphere-CSI-Driver-2.0-OpenShift-4-master.zip