I am about to deploy NebulaGraph on some Kubernetes instances in my corporate production clusters, which have no network access to the Docker Hub (but may possibly connect to other public/private registries), and use containerd containers as runtime. Part of the generated config is as follows, which cannot proceed due to network access problems:
image: vesoft/nebula-alpine:latest # <-- This line doesn't work because of no network access
imagePullPolicy: ItNotPresent
name: dynamic-flags
resources: {}
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /metadata
name: flags
How may I be able to get the Kubernetes nodes to work and pull from a custom registry mirror? Thanks.
I am about to deploy NebulaGraph on some Kubernetes instances in my corporate production clusters, which have no network access to the Docker Hub (but may possibly connect to other public/private registries), and use
containerdcontainers as runtime. Part of the generated config is as follows, which cannot proceed due to network access problems:How may I be able to get the Kubernetes nodes to work and pull from a custom registry mirror? Thanks.