
k8s
会飞的尼古拉斯
没有个性,但比较尿性
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
k8s 部署meilisearch UI
【代码】k8s 部署meilisearch UI。原创 2024-12-31 10:44:27 · 434 阅读 · 0 评论 -
以Ubuntu20.04 为基准多阶段构建含有java以及python的镜像
【代码】以Ubuntu20.04 为基准多阶段构建含有java以及python的镜像。原创 2024-12-23 10:34:52 · 161 阅读 · 0 评论 -
build一个镜像,包括java以及python环境
【代码】build一个镜像,包括java以及python环境。原创 2024-12-23 10:20:18 · 161 阅读 · 0 评论 -
k8s 部署neo4j 图数据库
k8s部署neo4j原创 2023-05-04 11:04:44 · 1360 阅读 · 0 评论 -
docker中设置elasticsearch7 安装IK分词
docker elasticsearch 安装ik分词器原创 2022-12-27 16:20:26 · 342 阅读 · 0 评论 -
k8s 中部署minio
k8s 部署minio原创 2022-12-24 23:18:16 · 631 阅读 · 0 评论 -
k8s中部署MongoDB
k8s 部署MongoDB原创 2022-12-18 00:29:03 · 564 阅读 · 0 评论 -
k8s 中部署kafka集群
k8s 部署kafka集群原创 2022-12-15 15:34:26 · 4241 阅读 · 0 评论 -
使用代理下载国外源registry.k8s.io镜像,并传到docker hub私有镜像库
国内下载国外镜像源原创 2022-12-08 16:57:18 · 8404 阅读 · 3 评论 -
k8s 中基于RBAC 控制pod的访问权限
role设置apiVersion: rbac.authorization.k8s.io/v1kind: Rolemetadata: namespace: default name: pod-readerrules:- apiGroups: [""] # "" 标明 core API 组 resources: ["pods"] verbs: ["get", "watch", "list"]rolebindingapiVersion: rbac.authorization.原创 2022-04-10 16:25:09 · 465 阅读 · 0 评论 -
k8s 中将pod的元数据映射到pod内作为环境变量
https://jamesdefabia.github.io/docs/user-guide/downward-api/apiVersion: v1kind: Podmetadata: name: testpodmetadataspec: containers: - name: testpodmetadata image: busybox command: ["sh","-c"] args: - while true; do原创 2022-03-01 22:41:04 · 281 阅读 · 0 评论 -
k8s 部署.netcore signalr,PV PVC
apiVersion: apps/v1kind: Deploymentmetadata: name: netcore3spec: replicas: 1 selector: matchLabels: app: netcore3 template: metadata: labels: app: netcore3 spec: containers: - name: core3 i原创 2021-11-08 15:40:37 · 179 阅读 · 0 评论 -
使用K8S部署clickhouse集群
安装chi-operatorkubectl apply -f https://github.com/radondb/radondb-clickhouse-kubernetes/clickhouse-operator-install.yaml优先使用这个kubectl apply -f https://raw.githubusercontent.com/Altinity/clickhouse-operator/master/deploy/operator/clickhouse-operator-i.原创 2021-10-13 14:07:06 · 2074 阅读 · 0 评论 -
docker 查看容器CPU 以及memory实际使用情况
docker statsdocker stats --no-streamBy default, docker stats will only output results for running containers. If you would like to output stats for all containers you can use the -a or --all flags with the command.docker stats --no-stream -a原创 2021-04-06 08:37:53 · 1918 阅读 · 0 评论