2.0安装memcached
service
kind: Service
apiVersion: v1
metadata:
name: memcached-service
namespace: default
labels:
name: memcached-service
spec:
ports:
- protocol: TCP
port: 11211
targetPort: 11211
nodePort: 32759
selector:
app: memcached
type: NodePortdeployment
kind: Deployment
apiVersion: apps/v1
metadata:
name: memcached-deployment
namespace: default
labels:
app: memcached
spec:
replicas: 1
selector:
matchLabels:
app: memcached
template:
metadata:
labels:
app: memcached
spec:
containers:
- name: memcached
image: registry.cn-chengdu.aliyuncs.com/liuchenyun/memcached:latest
ports:
- containerPort: 11211
protocol: TCP
resources:
requests:
cpu: 10m
memory: 50Mi
imagePullPolicy: IfNotPresent
nodeName: k8s
imagePullSecrets:
- name: dockercfg-liuchenyun