Serverless microservice practice - Mobile application package distribution service

background Alibaba cloud functional computing is an event driven fully hosted computing service. Through function calculation, you don't need to manage infrastructure such as servers, just write code and upload it. Function calculation will prepare computing resources for you, run your code in a flexib ...

Posted by faizanno1 on Wed, 15 Jan 2020 23:25:45 -0800

Docker Security Management (Actual!!!)

Docker Security Difference between Docker and Virtual Machine Isolation and Sharing By adding Hypervisor layer, virtual hardware such as network card, memory, CPU and so on, virtual machines can be built on top of it. Each virtual machine has its own system core Docker containers isolate file systems, processes, devices, networks and other re ...

Posted by OMorchoe on Tue, 14 Jan 2020 11:21:14 -0800

docker private warehouse

Introduction to Harbor Deploying the Docker Compose service on which Harbor dependsDeploy Harbor ServiceHarbor Daily Operations ManagementHarbor Management Life Cycle Harbor is an open source enterprise Docker Registry project for VMware Advantages of Harbor Role-based Control Mirror-based replication strategies Support for LDAP/AD Image ...

Posted by sirfartalot on Mon, 13 Jan 2020 16:19:25 -0800

Practical test of video high level feature classification

meet Last article: https://blog.csdn.net/SPESEG/article/details/103875916 Use the jitter video data to test our video and see how it works. Strategy: randomly select 20-40 frames, stack all frames, select the frames according to the index, then enter the integration V3 model as a whole, and then en ...

Posted by Ben5on on Sun, 12 Jan 2020 23:44:17 -0800

Deployment of Docker private warehouse

I. Harbor Harbor is an open-source enterprise Docker Registry project of VMware company(1) Harbor's strengths: Role based control;Mirror based replication strategy;Support LDAP / AD;Image deletion and garbage collection;Graphic UI;Audit;RESTful API; (2) Harbor Architecture Composition:1. Proxy: a front-end reverse proxy uniformly accepts requ ...

Posted by williamZanelli on Sun, 12 Jan 2020 19:27:25 -0800

docker local private repository, access controlled by certificate (centos8)

Article Directory 1. Private Warehouse Server 200 Create Certificate 2. Private warehouse server 200 uses certificates to create containers 3. Server 200 Local Test Upload and Download Mirrors IV. Client 210 Test Upload and Download Mirrors Server name IP Address Explain Server 200 192.168.1 ...

Posted by mecha_godzilla on Sun, 12 Jan 2020 19:22:10 -0800

centos7 kubernetes cluster deployment

centos 7 kubernetes cluster deployment Host (virtual machine) information: [root@k8s-master ~]# cat /etc/redhat-release CentOS Linux release 7.7.1908 (Core) Node name IP k8s-master 192.168.1.86 k8s-node1 192.168.1.87 Note: 1. k8s version can be selected by yourself. Take 1.16.2 as an ex ...

Posted by bdurham on Sat, 11 Jan 2020 01:40:16 -0800

Docker installs the latest version of Mysql (Mysql8.0)

Docker installs the latest version of Mysql (Mysql8.0) Docker environment configuration Mysql8.0 configuration Note: Note 1 Note 2 Last Congratulations, docker MySQL has been built successfully! If you think the writing is good, please click below to give a reward, thank you!! Original: product R ...

Posted by HiddenS3crets on Sat, 11 Jan 2020 00:27:57 -0800

Resource object for pod in k8s (namespace, acquisition policy, restart policy, health check)

1. Resource Objects for k8s Deployment, Service and Pod are the three core resource objects of k8s Deployment: The controller of the most common stateless application that supports scaling, rolling upgrade, and so on. Service: Provides a fixed access interface for flexible, life-cycle PD objects for service discovery and service access. Pod: ...

Posted by PhotoClickr on Thu, 09 Jan 2020 11:17:29 -0800

K8s deploys services using Jenkins

1. Install Jenkins #Preparing the Java environment tar xvf  jdk-8u231-linux-x64.tar.gz -C /usr/local/ cd /usr/local/ ln -s jdk1.8.0_231 java cat  /etc/profile.d/java export JAVA_HOME=/usr/local/java export PATH=$PATH:$JAVA_HOME/bin source  /etc/profile.d/java java  -version yum -y install wget wget -O /etc/yum.repos.d/jenkins.repo http:// ...

Posted by wiseoleweazel on Thu, 09 Jan 2020 11:03:58 -0800