我有一个码头应用程序,它使用坞-组合,我想在openshift-3中部署这个项目,所以我使用康米斯。这是我的拼图文件:-
version: '3'
services:
katana-db:
image: postgres
restart: always
environment:
POSTGRES_PASSWORD: *****
POSTGRES_USER: *****
backend:
depends_on:
- katana-db
build:
context: .
dockerfile: dockerfile_uwsgi
image: warrior_deployment_backend
extra_hosts:
- "example.com:100.0.0.201"
volumes:
- katana-secrets:/secrets
- katana-static:/warriorframework_py3/static
- katana-wapps:/warriorframework_py3/katana/wapps
- katana-wui:/warriorframework_py3/katana/wui
ports:
- "4000:4000"
environment:
DB_HOST: katana-db
DB_NAME: warrior
DB_USER: *****
DB_PASSWORD: *****
migration:
depends_on:
- backend
image: warrior_deployment_backend
entrypoint: ["sh", "-c"]
command: ["
python /warriorframework_py3/katana/manage.py collectstatic --noinput;
python /warriorframework_py3/katana/manage.py makemigrations;
python /warriorframework_py3/katana/manage.py migrate;
echo \"from django.contrib.auth import get_user_model; User = get_user_model(); x = User.objects.create_superuser('admin', '', 'warriorframework') if not User.objects.filter(username='admin').exists() else User.objects.get(username='admin'); x.set_password('warriorframework'); x.save()\" | python /warriorframework_py3/katana/manage.py shell;
"]
volumes:
- katana-static:/warriorframework_py3/static
- katana-wapps:/warriorframework_py3/katana/wapps
- katana-wui:/warriorframework_py3/katana/wui
environment:
DB_HOST: katana-db
DB_NAME: warrior
DB_USER: warrior
DB_PASSWORD: qwerty
frontend:
depends_on:
- backend
build:
context: .
dockerfile: dockerfile_nginx
image: warrior_deployment_frontend
volumes:
- katana-static:/warriorframework_py3/static
- nginx-secrets:/secrets
ports:
- "9443:8443"
labels:
kompose.service.expose: "true"
volumes:
katana-static:
driver: local-persist
driver_opts:
mountpoint: /data/local-persist/data/warrior/katana-static
katana-wapps:
driver: local-persist
driver_opts:
mountpoint: /data/local-persist/data/warrior/wapps
katana-wui:
driver: local-persist
driver_opts:
mountpoint: /data/local-persist/data/warrior/wui
nginx-secrets:
driver: local-persist
driver_opts:
mountpoint: /data/local-persist/data/warrior/nginx-secrets
katana-secrets:
driver: local-persist
driver_opts:
mountpoint: /data/local-persist/data/warrior/katana-secrets当我跑步时:
sudo kompose up --provider openshift
错误如下:
FATA Error while deploying application: persistentvolumeclaims "katana-static" already exists
完整的控制台日志如下:
INFO Building image 'warrior_deployment_backend' from directory 'warrior_docker_deployment'
INFO Image 'warrior_deployment_backend' from directory 'warrior_docker_deployment' built successfully
INFO Pushing image 'warrior_deployment_backend:latest'
INFO Multiple authentication credentials detected. Will try each configuration.
INFO Attempting authentication credentials 'docker-registry-default.router.default.svc.cluster.local
INFO Successfully pushed image 'warrior_deployment_backend:latest'
INFO Building image 'warrior_deployment_frontend' from directory 'warrior_docker_deployment'
INFO Image 'warrior_deployment_frontend' from directory 'warrior_docker_deployment' built successfully
INFO Pushing image 'warrior_deployment_frontend:latest' to registry
INFO Multiple authentication credentials detected. Will try each configuration.
INFO Attempting authentication credentials 'docker-registry-default.router.default.svc.cluster.local
INFO Successfully pushed image 'warrior_deployment_frontend:latest'
INFO We are going to create OpenShift DeploymentConfigs, Services and PersistentVolumeClaims for your Dockerized application.
If you need different kind of resources, use the 'kompose convert' and 'oc create -f' commands instead.
INFO Deploying application in "rak-warrior-ui" namespace
INFO Successfully created Service: backend
INFO Successfully created Service: frontend
INFO Successfully created DeploymentConfig: backend
INFO Successfully created ImageStream: backend
INFO Successfully created PersistentVolumeClaim: katana-secrets of size 100Mi. If your cluster has dynamic storage provisioning, you don't have to do anything. Otherwise you have to create PersistentVolume to make PVC work
INFO Successfully created PersistentVolumeClaim: katana-static of size 100Mi. If your cluster has dynamic storage provisioning, you don't have to do anything. Otherwise you have to create PersistentVolume to make PVC work
INFO Successfully created PersistentVolumeClaim: katana-wapps of size 100Mi. If your cluster has dynamic storage provisioning, you don't have to do anything. Otherwise you have to create PersistentVolume to make PVC work
INFO Successfully created PersistentVolumeClaim: katana-wui of size 100Mi. If your cluster has dynamic storage provisioning, you don't have to do anything. Otherwise you have to create PersistentVolume to make PVC work
INFO Successfully created DeploymentConfig: frontend
INFO Successfully created ImageStream: frontend
INFO Successfully created Route: frontend
FATA Error while deploying application: persistentvolumeclaims "katana-static" already exists根据我的观察/分析,这一错误可能是以下原因造成的:
库默斯可能错误地解释了共享的卷。如果我更清楚地解释这一点,它就像“katana-静态”是一个共享卷,用于前端、后端和迁移容器。kompose做了以下步骤(这里我只关注共享卷:katana-静态)
如果这实际上是正在发生的事情,那么如何解决这个问题呢?否则是什么导致了这个错误?
如果有任何其他论坛,我可以问这个问题,请分享在评论section.Thanks的链接,提前。
发布于 2019-11-26 12:36:36
问题可能是本地卷。
volumes:
katana-static:
driver: local-persist
driver_opts:
mountpoint: /data/local-persist/data/warrior/katana-static
katana-wapps:
driver: local-persist
driver_opts:
mountpoint: /data/local-persist/data/warrior/wapps
katana-wui:
driver: local-persist
driver_opts:
mountpoint: /data/local-persist/data/warrior/wui
nginx-secrets:
driver: local-persist
driver_opts:
mountpoint: /data/local-persist/data/warrior/nginx-secrets
katana-secrets:
driver: local-persist
driver_opts:
mountpoint: /data/local-persist/data/warrior/katana-secrets本地卷在openshift中不起作用。我建议您使用“kompose”命令将坞-组合转换为kubernetes YAML。
然后回顾和更新pvc和pv,然后逐个部署资源
https://stackoverflow.com/questions/59048854
复制相似问题