k8s上部署单节点apache-lotdb

一、yaml文件

使用的nfs的动态存储类,需要提前搭建。

# cat iotdb_deployment.yaml 
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
  name: logs
  namespace: lotdb
spec:
  storageClassName: "nfs-client"
  accessModes:
  - ReadWriteMany
  resources:
    requests:
      storage: 5Gi
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
  name: data
  namespace: lotdb
spec:
  storageClassName: "nfs-client"
  accessModes:
  - ReadWriteMany
  resources:
    requests:
      storage: 10Gi
---
apiVersion: apps/v1
kind: Deployment
metadata:
  name: lotdb
  namespace: lotdb
spec:
  replicas: 1
  selector:
    matchLabels:
      app: lotdb
  template:
    metadata:
      labels:
        app: lotdb
    spec:
      containers:
      - name: lotdb
        image: apache/iotdb:1.3.0-standalone
        ports:
        - containerPort: 6667
        volumeMounts:
        - name: logs
          mountPath: /iotdb/logs
        - name: data
          mountPath: /iotdb/data
        env:
        - name: cn_internal_address
          value: 0.0.0.0
        - name: cn_internal_port
          value: "10710" 
        - name: cn_consensus_port
          value: "10720"
        - name: cn_seed_config_node
          value: 0.0.0.0:10710
        - name: dn_rpc_address
          value: 0.0.0.0
        - name: dn_internal_address
          value: 0.0.0
        - name: dn_rpc_port
          value: "6667"
        - name: dn_mpp_data_exchange_port
          value: "10740"
        - name: dn_schema_region_consensus_port
          value: "10750"
        - name: dn_data_region_consensus_port
          value: "10760"
        - name: dn_seed_config_node
          value: "10710"
        livenessProbe:
          tcpSocket:
            port: 6667
          initialDelaySeconds: 40
          periodSeconds: 10
        readinessProbe:
          tcpSocket:
            port: 6667
          initialDelaySeconds: 40
          periodSeconds: 10
      volumes:
      - name: logs
        persistentVolumeClaim:
          claimName: logs
      - name: data
        persistentVolumeClaim:
          claimName: data
      dnsPolicy: "None"
      dnsConfig:
        nameservers:
          - 10.96.0.10
        searches:
          - svc.cluster.local
          - cluster.local
---
apiVersion: v1
kind: Service
metadata:
  name: lotdb
  namespace: lotdb
spec:
  clusterIP: 10.96.201.174
  clusterIPs:
  - 10.96.201.174
  externalTrafficPolicy: Cluster
  internalTrafficPolicy: Cluster
  ports:
  - nodePort: 30925
    port: 6667
    protocol: TCP
    targetPort: 6667
  selector:
    app: lotdb
  type: NodePort


# kubectl create ns lotdb

# kubectl apply -f iotdb_deployment.yaml

二、需要修改的地方

三、查看

docker tag dhub.kubesre.xyz/apache/iotdb:1.3.0-standalone apache/iotdb:1.3.0-standalone

docker rmi dhub.kubesre.xyz/apache/iotdb:1.3.0-standalone

相关推荐
IT云清6 小时前
Apache Seata透过源码解决SeataAT模式整合Mybatis-Plus失去MP特性的问题
apache·mybatis
hay_lee7 小时前
一台docker机器如何实现构建多平台镜像
运维·docker·云原生·容器
The Straggling Crow7 小时前
k8s record 20240705
云原生·容器·kubernetes
lendq7 小时前
k8s-第九节-命名空间
linux·容器·kubernetes
文静小土豆8 小时前
K8S 部署 EFK
云原生·容器·kubernetes
IT云清9 小时前
Apache Seata应用侧启动过程剖析——注册中心与配置中心模块
中间件·apache·seata·分布式事务
Roc-xb9 小时前
Eclipse配置Tomcat时无Apache选项问题
java·eclipse·tomcat·apache
蜗牛乌龟一起走10 小时前
【搭建Nacos服务】centos7 docker从0搭建Nacos服务
运维·docker·容器
acro_0910 小时前
基于python 的动态虚拟主机
运维·服务器·云原生·apache
IT云清10 小时前
Apache Seata Mac下的Seata Demo环境搭建
分布式·macos·apache·seata·分布式事务