- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用Gitlab Autodevops在我的kubernetes集群上部署应用程序。该应用应始终仅运行一个实例。
问题是,在更新过程中,Helm在新的Pod准备就绪之前会杀死当前正在运行的Pod。这会导致停机时间,即旧版本已被终止而新版本尚未准备就绪。更糟糕的是,应用需要大量时间才能启动(超过2分钟)。
我试图在minAvailable: 1
中设置PodDisruptionBudget
,但是没有帮助。
任何想法我该如何告诉 Helm 手在杀死旧荚之前等待更新荚的准备? (对我来说,让两个实例同时运行几秒钟并不是一个问题)
最佳答案
您可以通过几种方式发布新的应用程序版本,有必要选择适合您需求的版本。
我建议以下之一:
加速-缓慢推出
A ramped deployment updates pods in a rolling update fashion, a secondary ReplicaSet is created with the new version of the application, then the number of replicas of the old version is decreased and the new version is increased until the correct number of replicas is reached.
spec:
replicas: 3
strategy:
type: RollingUpdate
rollingUpdate:
maxSurge: 2 # how many pods we can add at a time
maxUnavailable: 0 # maxUnavailable define how many pods can be unavailable
# during the rolling update
完整的示例和步骤可以在
here中找到。
A blue/green deployment differs from a ramped deployment because the “green” version of the application is deployed alongside the “blue” version. After testing that the new version meets the requirements, we update the Kubernetes Service object that plays the role of load balancer to send traffic to the new version by replacing the version label in the selector field.
apiVersion: v1
kind: Service
metadata:
name: my-app
labels:
app: my-app
spec:
type: NodePort
ports:
- name: http
port: 8080
targetPort: 8080
# Note here that we match both the app and the version.
# When switching traffic, we update the label “version” with
# the appropriate value, ie: v2.0.0
selector:
app: my-app
version: v1.0.0
完整的示例和步骤可以在
here中找到。
A canary deployment consists of routing a subset of users to a new functionality. In Kubernetes, a canary deployment can be done using two Deployments with common pod labels. One replica of the new version is released alongside the old version. Then after some time and if no error is detected, scale up the number of replicas of the new version and delete the old deployment.
Using this ReplicaSet technique requires spinning-up as many pods as necessary to get the right percentage of traffic. That said, if you want to send 1% of traffic to version B, you need to have one pod running with version B and 99 pods running with version A. This can be pretty inconvenient to manage so if you are looking for a better managed traffic distribution, look at load balancers such as HAProxy or service meshes like Linkerd, which provide greater controls over traffic.
spec:
replicas: 3
版本B的 list :
spec:
replicas: 1
完整的示例和步骤可以在
here中找到。
关于kubernetes - Gitlab Autodevops如何始终保持一个 pods 存活,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55088104/
我有一个包含一些宏和用户表单的 Excel 文件。 我不希望用户在没有密码的情况下访问文件本身。他们应该只能看到用户表单并通过用户表单输入数据。 这是我目前拥有的代码。 Private Sub Wor
我正在使用 ui 自动完成功能:over here 我需要始终打开自动完成功能,因此当单击正文中的某个位置时它不应该关闭。我已经用谷歌搜索过这个但我找不到任何东西。 最佳答案 抱歉,回复晚了! 我觉得
我有几个使用 Drupal 的站点,我有几个服务器,live,dev1,dev2... Drupal 的代码库存储库很大 (112Mb),所以我很想充分利用 git 的硬链接(hard link)功能
我需要一个始终保存 n 的数据结构迄今为止插入的最大项目(无特定顺序)。 所以,如果 n是 3,我们可以在下面的 session 中插入一些数字并且容器的内容发生变化: [] // now inse
这个问题在这里已经有了答案: Why don't flex items shrink past content size? (5 个答案) 关闭 5 年前。 我在 flexbox 中有 5 列 di
Smartgit 一直 pop 登录表单! 我已经在我的服务器上部署了 git。严格按照 git 设置的说明进行操作。 然后我用puttygen生成开放的SSH私钥,填写密码,把代码放在“public
我在对齐 div 时遇到问题。我在一个容器中有 5 个 div,全部向左浮动,按照下图设置。 每个 div 的宽度为 425px,div 与容器之间的边距始终为 15px,容器的宽度为 1350px。
我正在使用带有集成颠覆控制的 NetBeans。 如果我通过 TortoiseSVN 进行提交、添加等操作,NetBeans 将无法识别这些操作。 显然,如果我通过 NetBeans 进行更改,我的本
我知道有很多这样的问题,但我阅读了所有这些问题,其中没有一个解决了我的问题。下面我将展示我的 View 和 Controller 中的代码,以便您了解我的代码。 View :
我有一个 100% 高度的左浮动和 100% 的右浮动。一切正常,直到我用文本填充一侧,另一侧才会停止。 我该如何解决这个问题? 最佳答案 在为两列插入父 div 后,您可以使用 css 表。例如:
我使用此 JavaScript 代码是为了在验证失败后突出显示文本框和其他控件(在其上指定了 ASP.NET 验证器)。 $(document).ready(function() {
我是一名优秀的程序员,十分优秀!