- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在你大喊“盖茨!”之前请阅读。
我有本地 IIS 服务器场,我为每个服务器场(开发、测试、生产)创建了一个 VM 环境。在我所有的应用程序中,我都有一个像这样的 CD YAML:
- stage: Deploy_Test
jobs:
- deployment: APIDeployTestIISFarm
displayName: Deploy API to Test IIS
environment:
name: Test
resourceType: VirtualMachine
strategy:
runOnce:
deploy:
steps:
因为我有 20 个不同的应用程序都针对相同的环境,所以我无法使用 gates 功能。并非所有应用都具有完全相同的 /health
端点。
我目前正在制作一个 powershell 命令来简单地调用/health 并且如果“不健康”可能会抛出结果。尽管与仅检查 200 的 HTTP 门相比,这对我来说听起来非常丑陋,但我敢打赌它也具有容错/弹性。毕竟,IIS 站点在部署后需要一秒钟的时间才能在第一次点击时启动。
对我尚未见过的其他想法或任务持开放态度。
最佳答案
我的解决方案是创建一个容错的 PowerShell 脚本来 ping 健康端点。我更进一步并将其包装在一个模板中,该模板可以插入到您的主 CI/CD 模板中。这样做让我可以使用我选择的 IDE (VSCode) 单独开发和测试 PS 脚本,还可以借助模板将其作为标准任务重新使用,或者在 Azure Pipelines 之外使用它。
脚本注释:脚本最终通过Write-Error
结合 failOnStderr: true
来决定任务是否失败 PowerShell@2
任务我们稍后会看到。
## Base code borrowed from https://karask.com/retry-powershell-invoke-webrequest/
## Slightly modified to remove things like the file logging.
param (
[string]$URI,
[string]$Method = 'GET',
[string]$SuccessTextContent = 'Healthy',
[string]$Retries = 1,
[string]$SecondsDelay = 2,
[string]$TimeoutSec = 120
)
Write-Output "$Method ""$URI"" Retries: $Retries, SecondsDelay $SecondsDelay, TimeoutSec $TimeoutSec";
Function Req {
Param(
[Parameter(Mandatory=$True)]
[hashtable]$Params,
[int]$Retries = 1,
[int]$SecondsDelay = 2
)
$Params.Add('UserAgent', 'azagent powershell task')
$method = $Params['Method']
$url = $Params['Uri']
$cmd = { Write-Host "$method $url..." -NoNewline; Invoke-WebRequest @Params }
$retryCount = 0
$completed = $false
$response = $null
while (-not $completed) {
try {
$response = Invoke-Command $cmd -ArgumentList $Params
if ($response.StatusCode -ne 200) {
throw "Expecting reponse code 200, was: $($response.StatusCode)"
}
$completed = $true
} catch {
Write-Output "$(Get-Date -Format G): Request to $url failed. $_"
if ($retrycount -ge $Retries) {
Write-Error "Request to $url failed the maximum number of $retryCount times."
throw
} else {
Write-Warning "Request to $url failed. Retrying in $SecondsDelay seconds."
Start-Sleep $SecondsDelay
$retrycount++
}
}
}
Write-Host "OK ($($response.StatusCode))"
return $response
}
$res = Req -Retries $Retries -SecondsDelay $SecondsDelay -Params @{ 'Method'=$Method;'Uri'=$URI;'TimeoutSec'=$TimeoutSec;'UseBasicParsing'=$true }
if($res.Content -ne "$SuccessTextContent")
{
Write-Error $response.Content
}
else
{
Write-Host "Helath check validation success."
}
模板注意事项:此任务有一个很容易被忽略的微妙细节。 -结帐:模板
。这实际上将 check out 在插入此模板的模板中定义的存储库资源。这似乎很明显,因为插入了模板,然后一旦完成,它就会像一个 yaml 一样执行。
parameters:
- name: URI
type: string
- name: Method
type: string
default: 'GET'
- name: SuccessTextContent
type: string
default: 'Healthy'
- name: Retries
type: number
default: 5
- name: SecondsDelay
type: number
default: 2
- name: TimeoutSec
type: number
default: 120
steps:
- checkout: templates
- task: PowerShell@2
displayName: '${{ parameters.Method }} ${{ parameters.URI }}...'
inputs:
failOnStderr: true
targetType: 'filePath'
filePath: $(System.DefaultWorkingDirectory)\InvokeRequestWithRetry.ps1
arguments: > # Use this to avoid newline characters in multi-line string
-URI "${{ parameters.URI }}"
-Method "${{ parameters.Method }}"
-SuccessTextContent "${{ parameters.SuccessTextContent }}"
-Retries ${{ parameters.Retries }}
-SecondsDelay ${{ parameters.SecondsDelay }}
-TimeoutSec ${{ parameters.TimeoutSec }}
Parent YAML 注释: 最后,我们有用法。我选择将其作为自己的专用部署作业,这样我可以在一切失败时手动单击重试,而不必重新运行整个部署。此外,我希望 PS 在我的防火墙后面的 VM 环境中运行。
resources:
repositories:
- repository: templates
type: git
name: IAMM/azure-pipelines-templates
ref: refs/tags/v0.4
## ...
## Removed for brevity
## ...
- deployment: MyAppHealthDevIIS
dependsOn: MyAppDeployDevIIS
displayName: 'Hit /health/views endpoint before proceeding'
environment:
name: Development
resourceType: VirtualMachine
strategy:
runOnce:
deploy:
steps:
- template: templates/health-check.yaml@templates
parameters:
URI: 'https://$(iisHostName)/$(iisTargetApplication)/health/views'
SecondsDelay: 5
关于azure-devops - 在 YAML 部署作业中部署后检查应用程序运行状况端点的最佳方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62938424/
好的,所以我想从批处理文件运行我的整个工作环境... 我想要实现什么...... 打开新的 powershell,打开我的 API 文件夹并从该文件夹运行 VS Code 编辑器(cd c:\xy;
我正在查看 Cocoa Controls 上的示例并下载了一些演示。我遇到的问题是一些例子,比如 BCTabBarController ,不会在我的设备上构建或启动。当我打开项目时,它看起来很正常,没
我刚刚开始学习 C 语言(擅长 Java 和 Python)。 当编写 C 程序(例如 hello world)时,我在 ubuntu cmd 行上使用 gcc hello.c -o hello 编译
我在 php 脚本从 cron 开始运行到超时后注意到了这个问题,但是当它从命令行手动运行时这不是问题。 (对于 CLI,PHP 默认的 max_execution_time 是 0) 所以我尝试运行
我可以使用命令行运行测试 > ./node_modules/.bin/wdio wdio.conf.js 但是如果我尝试从 IntelliJ 的运行/调试配置运行它,我会遇到各种不同的错误。 Fea
Error occurred during initialization of VM. Could not reserve enough space for object heap. Error: C
将 Anaconda 安装到 C:\ 后,我无法打开 jupyter 笔记本。无论是在带有 jupyter notebook 的 Anaconda Prompt 中还是在导航器中。我就是无法让它工作。
我遇到一个问题,如果我双击我的脚本 (.py),或者使用 IDLE 打开它,它将正确编译并运行。但是,如果我尝试在 Windows 命令行中运行脚本,请使用 C:\> "C:\Software_Dev
情况 我正在使用 mysql 数据库。查询从 phpmyadmin 和 postman 运行 但是当我从 android 发送请求时(它返回零行) 我已经记录了从 android 发送的电子邮件是正确
所以这个有点奇怪 - 为什么从 Java 运行 .exe 文件会给出不同的输出而不是直接运行 .exe。 当 java 在下面的行执行时,它会调用我构建的可与 3CX 电话系统配合使用的 .exe 文
这行代码 Environment.Is64BitProcess 当我的应用单独运行时评估为真。 但是当它在我的 Visual Studio 单元测试中运行时,相同的表达式的计算结果为 false。 我
关闭。这个问题是opinion-based .它目前不接受答案。 想要改进这个问题? 更新问题,以便 editing this post 可以用事实和引用来回答它. 关闭 8 年前。 Improve
我写了一个使用 libpq 连接到 PostgreSQL 数据库的演示。 我尝试通过包含将 C 文件连接到 PostgreSQL #include 在我将路径添加到系统变量 I:\Program F
如何从 Jenkins 运行 Android 模拟器来运行我的测试?当我在 Execiute Windows bath 命令中写入时,运行模拟器的命令: emulator -avd Tester 然后
我已经配置好东西,这样我就可以使用 ssl 登录和访问在 nginx 上运行的 errbit 我的问题是我不知道如何设置我的 Rails 应用程序的 errbit.rb 以便我可以运行测试 nginx
我编写了 flutter 应用程序,我通过 xcode 打开了 ios 部分并且应用程序正在运行,但是当我通过 flutter build ios 通过 vscode 运行应用程序时,我得到了这个错误
我有一个简短的 python 脚本,它使用日志记录模块和 configparser 模块。我在Win7下使用PyCharm 2.7.1和Python 3.3。 当我使用 PyCharm 运行我的脚本时
我在这里遇到了一些难题。 我的开发箱是 64 位的,windows 7。我所有的项目都编译为“任何 CPU”。该项目引用了 64 位版本的第 3 方软件 当我运行不使用任何 Web 引用的单元测试时,
当我注意到以下问题时,我正在做一些 C++ 练习。给定的代码将不会在 Visual Studio 2013 或 Qt Creator 5.4.1 中运行/编译 报错: invalid types 'd
假设我有一个 easteregg.py 文件: from airflow import DAG from dateutil import parser from datetime import tim
我是一名优秀的程序员,十分优秀!