Add privilege control for Kubernetes dashboard access users

Add privilege control for Kubernetes dashboard access users Article directory Add privilege control for Kubernetes dashboard access users 1. demand 2. plan 3. implementation 3.1 Assign dashboard permissions 3.2 Allocate kubeapps permissions 3.3 Generating kubeconfig 4. Test Verification 1. demand To create applicat ...

Posted by phprocket on Fri, 01 Feb 2019 09:00:15 -0800

Devops Key Tools and Technologies (7) - Pipeline-based Jmeter Performance Testing [2] (Pipeline Integration of Jmeter Performance Testing)

In the last three articles, we used the automated tools to integrate Jenkins Docker Cloud with Robot Framework + Selenium + Chome, and realized the automated testing of the Web in Pipeline, from the installation of the Web automated testing tools under windows to the containerization of the Web automated testing tool Robot Frame ...

Posted by shiva on Tue, 29 Jan 2019 01:24:14 -0800

The Method of Obtaining Mac Address from Android Mobile Phone

In this period of requirement, it is required to obtain a unique code from the system device as the unique identification of the current logged-in user, and finally decided to adopt the mac address. The first is: The official method of obtaining mac address is: /** * Getting mac address through WiFiManager * @param ...

Posted by colby.anderson on Sun, 27 Jan 2019 23:03:14 -0800

Linux Learning from scratch IV

Authority management: ls -l rwxrwxrwx: The left three: defining user(owner) permissions The middle three: define the rights of group; The right three: the right to define other Process security context: Application model of process access rights to files: Whether the ownership of ...

Posted by ntbd on Sun, 27 Jan 2019 18:27:15 -0800

sh scripting in Ubuntu system

In the process of developing Ubuntu system, we often encounter some repetitive operations, such as copy, push and so on. At this point, we can write a sh script ourselves, using the SH script to operate on these repeated actions. 1. Understand the basic grammar before writing sh scripts 1.1 if statement #!/bin/sh myPath="/va ...

Posted by Terrum on Sun, 27 Jan 2019 15:45:14 -0800

[git learning] An error occurred while restoring GitLab on the CenterOS system: tar: due to a previous error, unpacking backup failed

I. Problem Description Today, after testing encrypted GitLab backup files, decrypting them, and then restoring GitLab, the recovery failed. The following error was reported: tar: db: Unable mkdir: insufficient privilege tar: db: Unable mkdir: insufficient privilege tar: db/database.sql.gz: Unable open: No file or directory ta ...

Posted by Panz3r on Sat, 26 Jan 2019 04:06:14 -0800

Install dashboard v1.10 + Heapster for kubernetes 1.12.1

Dashboard is the official WEB UI of kubernetes. Heapster adds usage statistics and monitoring functions for clusters and dashboards for Dashboard. Use InfluxDB as the back-end storage for Heapster. Dashboard Installation kubernetes dashboard official Resource Definition Document: https://raw.githubusercontent.com/kubernetes/dashboard/master/s ...

Posted by CoderDan on Sat, 26 Jan 2019 04:03:14 -0800

CentOS 7 deploys another powerful tool for intranet penetration, Frp

Before I introduced the way to compile the intranet penetration software ngrok server and client under CentOS, today I introduce a better intranet penetration software than ngrok, Frp.   frp (fast reverse proxy) is a high performance reverse daili application that can be used for intranet penetration. It supports tcp, udp, ...

Posted by Zyx on Thu, 24 Jan 2019 09:42:13 -0800

tomcat starts error reporting java.util.zip.ZipException: invalid LOC header (bad signature)

Deploying the war package to tomcat due to project needs, the start-up time is wrong: 31-Oct-2018 09:11:18.555 information [ContainerBackgroundProcessor[StandardEngine[Catalina]]] org.apache.catalina.startup.HostConfig.deployWAR Deploying web application archive [D:\Program Files\Apache Software Foundation\Tomcat 9.0_Tomcat9.0 ...

Posted by northstjarna on Wed, 23 Jan 2019 00:06:13 -0800

13.Linux shell programming (conditional statements and standard output redirection)

(Created in 2018/1/31) Conditional statement Conditional statements in the shell must end with fi, otherwise syntax error: unexpected end of file will be reported if else then the test command here means that if the condition after test holds, then it is 0 (true), otherwise it is non-zero (false). #!/bin/bash 2 3 var="" 4 i ...

Posted by nickmgombash on Sat, 19 Jan 2019 16:06:14 -0800