1.16弃用通知:
DaemonSet, Deployment, StatefulSet, and ReplicaSet resources will no longer
be served from extensions/v1beta1, apps/v1beta1, or apps/v1beta2 in v1.16. Migrate to the apps/v1 API, available since v1.9. Existing persisted data
can be retrieved through the apps/v1 API. For example, to convert a
Deployment that currently uses apps/v1beta1, enter the following command.
我有大约10张舵图,其中包含旧的api版本-datadog,nginx-ingress等。我不想升级这些不同的服务。有已知的解决方法吗?
答案 0 :(得分:1)
您应该考虑一些选择:
不更新任何内容,仅坚持使用Kubernetes 1.15(不建议使用,因为它是最新版本的4个主要版本)
from docx2pdf import convert
convert("input.docx")
convert("input.docx", "output.pdf")
convert("my_docx_folder/")
并将您的所有资源中的git clone
更改为apiVersion
使用kubectl convert来更改apps/v1
,例如:apiVersion
值得一提的是,某些东西由于某种原因而被弃用,如果不再受支持,强烈建议您不要使用旧的方法。