How can I pass artifacts to another stage?

Use dependencies. With this config test stage will download the untracked files that were created during the build stage: ... Read More | Share it now!

GCR(Container Registry) Authentication methods

https://cloud.google.com/container-registry/docs/advanced-authentication To authenticate to Container Registry, you should use gcloud as a Docker credential helper as described below. This page also describes advanced... Read More | Share it now!

kubernetes debug

For OpenShift use: For vanilla Kubernetes: Examine the events of the output. In my case it shows Back-off pulling image coredns/coredns:latest In this case the image coredns/coredns:latest can not be pulled from the Internet. Additional debuging... Read More | Share it now!

Push docker image to GCR for kubernetes 推送和拉取映像

本页面介绍如何推送和拉取映像,这是使用 Container Registry 时的两项最常见任务。要将新映像推送到 Container Registry,您首先需要使用注册表名称来标记该映像,如下所述。 要开始使用 Container... Read More | Share it now!

Installing Kubernetes with Minikube

Minikube is a tool that makes it easy to run Kubernetes locally. Minikube runs a single-node Kubernetes cluster inside a Virtual Machine (VM) on your laptop for users looking to try out Kubernetes or develop with it day-to-day. Minikube... Read More | Share it now!

Linux 之 shell 比较运算符

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA... Read More | Share it now!

使用awk进行数字计算,保留指定位小数

https://blog.51cto.com/radish/1736900 对于在Shell中进行数字的计算,其实方法有很多,但是常用的方法都有其弱点: 1、bc     bc应该是最常用的Linux中计算器了,简单方便,支持浮点。     看似在简单计算时候完美的bc,其实也有一个让我抓狂的地方,当然有可能有办法可以解决,只是我不知道而已,那就是……... Read More | Share it now!

Learn how to configure caching, load balancing, cloud deployments, and other critical NGINX features

Development guide Introduction Code layout auto — Build scripts src core — Basic types and functions — string, array, log, pool, etc. event — Event core modules — Event notification... Read More | Share it now!

ab test Apache Benchmark

Post: Get: ab是apache自带的压力测试工具。ab非常实用,它不仅可以对apache服务器进行网站访问压力测试,也可以对或其它类型的服务器进行压力测试。比如nginx、tomcat、IIS等。 一、Apache下载 Windows下载地址:... Read More | Share it now!

How do I measure request and response times at once using cURL?

From this brilliant blog post… https://blog.josephscott.org/2011/10/14/timing-details-with-curl/ cURL supports formatted output for the details of the request (see the cURL manpage for details, under -w, –write-out... Read More | Share it now!