新增learn-kubernetes(https://github.com/yyong-brs/learn-kubernetes)相关文件
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
# Patterns to ignore when building packages.
|
||||
# This supports shell glob matching, relative path matching, and
|
||||
# negation (prefixed with !). Only one pattern per line.
|
||||
.DS_Store
|
||||
# Common VCS dirs
|
||||
.git/
|
||||
.gitignore
|
||||
.bzr/
|
||||
.bzrignore
|
||||
.hg/
|
||||
.hgignore
|
||||
.svn/
|
||||
# Common backup files
|
||||
*.swp
|
||||
*.bak
|
||||
*.tmp
|
||||
*.orig
|
||||
*~
|
||||
# Various IDEs
|
||||
.project
|
||||
.idea/
|
||||
*.tmproj
|
||||
.vscode/
|
||||
@@ -0,0 +1,6 @@
|
||||
apiVersion: v2
|
||||
name: web-ping
|
||||
description: A simple web pinger
|
||||
type: application
|
||||
version: 0.1.0
|
||||
appVersion: 1.0.0
|
||||
@@ -0,0 +1,29 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: {{ .Release.Name }}
|
||||
labels:
|
||||
kiamol: {{ .Values.kiamolChapter }}
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
app: web-ping
|
||||
instance: {{ .Release.Name }}
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: web-ping
|
||||
instance: {{ .Release.Name }}
|
||||
spec:
|
||||
containers:
|
||||
- name: app
|
||||
image: kiamol/ch10-web-ping
|
||||
env:
|
||||
- name: TARGET
|
||||
value: {{ .Values.targetUrl }}
|
||||
- name: METHOD
|
||||
value: {{ .Values.httpMethod }}
|
||||
- name: INTERVAL
|
||||
value: {{ .Values.pingIntervalMilliseconds | quote }}
|
||||
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
# targetUrl - URL of the website to ping
|
||||
targetUrl: blog.sixeyed.com
|
||||
# httpMethod - HTTP method to use for pings
|
||||
httpMethod: HEAD
|
||||
# pingIntervalMilliseconds - interval between pings in ms
|
||||
pingIntervalMilliseconds: 30000
|
||||
# chapter where this exercise is used
|
||||
kiamolChapter: ch10
|
||||
Reference in New Issue
Block a user