{"id":429,"date":"2025-06-24T07:52:13","date_gmt":"2025-06-24T07:52:13","guid":{"rendered":"https:\/\/sreschool.com\/blog\/?p=429"},"modified":"2026-05-05T07:29:43","modified_gmt":"2026-05-05T07:29:43","slug":"deployment-health-check-in-devsecops-complete-guide","status":"publish","type":"post","link":"https:\/\/sreschool.com\/blog\/deployment-health-check-in-devsecops-complete-guide\/","title":{"rendered":"Deployment Health Check in DevSecOps \u2013 Complete Guide"},"content":{"rendered":"\n<h1 class=\"wp-block-heading\">1. Introduction &amp; Overview<\/h1>\n\n\n\n<h3 class=\"wp-block-heading\">What is Deployment Health Check?<\/h3>\n\n\n\n<p>A <strong>Deployment Health Check<\/strong> is a set of automated and\/or manual validation steps that verify the success and stability of a deployment after it reaches production or a staging environment. It ensures that deployed applications are functional, secure, and performing as expected.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">History &amp; Background<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Originated as part of <strong>ITIL best practices<\/strong> for service management.<\/li>\n\n\n\n<li>Evolved from <strong>post-deployment validation scripts<\/strong> and <strong>monitoring tools<\/strong> into more integrated and automated <strong>DevOps\/DevSecOps pipelines<\/strong>.<\/li>\n\n\n\n<li>Now a <strong>core requirement<\/strong> in regulated and high-availability environments such as <strong>finance<\/strong>, <strong>healthcare<\/strong>, and <strong>e-commerce<\/strong>.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Why It\u2019s Relevant in DevSecOps<\/h3>\n\n\n\n<p>In DevSecOps, security is <strong>\u201cshifted left\u201d<\/strong> and tightly integrated into CI\/CD. A <strong>Deployment Health Check<\/strong> provides:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Immediate feedback loop post-deployment.<\/li>\n\n\n\n<li>Assurance that new code didn\u2019t introduce vulnerabilities or performance regressions.<\/li>\n\n\n\n<li>Verification of compliance and security postures in real-time environments.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\">2. Core Concepts &amp; Terminology<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Key Terms &amp; Definitions<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Term<\/th><th>Definition<\/th><\/tr><\/thead><tbody><tr><td><strong>Health Check<\/strong><\/td><td>Script or tool that verifies application availability and integrity post-deployment.<\/td><\/tr><tr><td><strong>Smoke Tests<\/strong><\/td><td>Lightweight tests run after deployment to validate key features are working.<\/td><\/tr><tr><td><strong>Synthetic Monitoring<\/strong><\/td><td>Simulates user behavior to test performance and uptime.<\/td><\/tr><tr><td><strong>Security Gate<\/strong><\/td><td>Automated checks that stop a deployment if security policies are violated.<\/td><\/tr><tr><td><strong>Service-Level Objectives (SLOs)<\/strong><\/td><td>Targets for availability, latency, and error rates monitored post-deployment.<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Fit in DevSecOps Lifecycle<\/h3>\n\n\n\n<p><strong>Deployment Health Check<\/strong> is performed at the <strong>Post-Deploy<\/strong> phase but integrates with all previous stages:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Plan \u2192 Code \u2192 Build \u2192 Test \u2192 Release \u2192 Deploy \u2192 \ud83d\udfe2Post-Deploy Health Check \ud83d\udee0 \u2192 Monitor \u2192 Feedback\n<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Security Checks<\/strong>: Validate secrets, permissions, and vulnerabilities.<\/li>\n\n\n\n<li><strong>Monitoring Hooks<\/strong>: Connect to Prometheus, Grafana, or Datadog.<\/li>\n\n\n\n<li><strong>Rollback Triggers<\/strong>: Automatically undo a deployment on failure.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\">3. Architecture &amp; How It Works<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Components<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Health Check Engine<\/strong>: Runs probes, scripts, and diagnostics.<\/li>\n\n\n\n<li><strong>Monitoring Agents<\/strong>: Collect metrics\/logs from containers, VMs.<\/li>\n\n\n\n<li><strong>Security Scanners<\/strong>: Run vulnerability scans post-deployment.<\/li>\n\n\n\n<li><strong>CI\/CD Pipeline Hooks<\/strong>: Trigger health checks post-deploy.<\/li>\n\n\n\n<li><strong>Notification System<\/strong>: Alerts teams on failure (Slack, Email, PagerDuty).<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Internal Workflow<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>1. Code Deployed \u2192\n2. Health Check Triggered \u2192\n3. Functional + Security Tests Run \u2192\n4. Results Evaluated \u2192\n5. Notify\/Approve\/Reject \u2192\n6. Rollback if Failing\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Diagram (Text-based)<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>          +----------------+\n          |   Deployment   |\n          +--------+-------+\n                   |\n                   v\n         +--------------------+\n         | Health Check Engine|&lt;------+\n         +--------+-----------+       |\n                  |                   |\n      +-----------+-----------+       |\n      |                       |       |\n+-------------+       +------------------+\n| Functional  |       | Security Scanner |\n| Smoke Tests |       | (e.g. Trivy)     |\n+-------------+       +------------------+\n      |                       |\n      +-----------+-----------+\n                  |\n         +--------v--------+\n         | Result Evaluator|\n         +--------+--------+\n                  |\n     +------------+-----------+\n     | Notification &amp; Rollback|\n     +------------------------+\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Integration Points<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Tool<\/th><th>Purpose<\/th><\/tr><\/thead><tbody><tr><td><strong>GitHub Actions<\/strong> \/ <strong>GitLab CI<\/strong><\/td><td>Automate health checks post-deploy.<\/td><\/tr><tr><td><strong>AWS CodeDeploy Hooks<\/strong><\/td><td>Run scripts after deployment.<\/td><\/tr><tr><td><strong>Kubernetes Probes<\/strong><\/td><td>Liveness\/readiness probes for health status.<\/td><\/tr><tr><td><strong>Prometheus &amp; Grafana<\/strong><\/td><td>Metrics-based validation.<\/td><\/tr><tr><td><strong>Trivy\/Grype<\/strong><\/td><td>Container image security checks.<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\">4. Installation &amp; Getting Started<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Prerequisites<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>CI\/CD tool (GitHub Actions, Jenkins, GitLab, etc.)<\/li>\n\n\n\n<li>Target environment (Kubernetes, VM, Docker)<\/li>\n\n\n\n<li>Monitoring &amp; Alerting tools (optional)<\/li>\n\n\n\n<li>Python\/Bash or any scripting language for probes<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Step-by-Step: GitHub Actions + Bash Script Example<\/h3>\n\n\n\n<p><strong>1. Create a <code>.github\/workflows\/health-check.yml<\/code><\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>name: Deployment Health Check\n\non:\n  deployment_status:\n    types: &#091;success]\n\njobs:\n  health-check:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Run Functional Test\n        run: curl -f https:\/\/your-app.com\/health || exit 1\n\n      - name: Security Check with Trivy\n        uses: aquasecurity\/trivy-action@master\n        with:\n          image-ref: your-image-name:latest\n<\/code><\/pre>\n\n\n\n<p><strong>2. Add Health Endpoint to App<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/ Example in Node.js\napp.get('\/health', (req, res) =&gt; {\n  res.status(200).send('OK');\n});\n<\/code><\/pre>\n\n\n\n<p><strong>3. Configure Alerts<\/strong><\/p>\n\n\n\n<p>Use Slack, PagerDuty, or Microsoft Teams for notification on failure.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\">5. Real-World Use Cases<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. <strong>FinTech (Banking)<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Ensure PCI-DSS compliance after each deployment.<\/li>\n\n\n\n<li>Run Trivy + Snyk to scan APIs and containers.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">2. <strong>Healthcare<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Validate HIPAA-compliant endpoints are secure post-deploy.<\/li>\n\n\n\n<li>Mask PHI in logs via health-check script.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">3. <strong>E-commerce<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Simulate checkout flow and inventory update as a health check.<\/li>\n\n\n\n<li>Rollback deployment if payment gateway API fails.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">4. <strong>SaaS Platforms<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Dynamic Canary Checks \u2013 deploy to 10% traffic, monitor, then scale.<\/li>\n\n\n\n<li>Use Datadog synthetic testing for uptime.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\">6. Benefits &amp; Limitations<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">\u2705 Benefits<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Reduces Downtime<\/strong>: Fast detection and rollback.<\/li>\n\n\n\n<li><strong>Improves Security Posture<\/strong>: Automated security validations.<\/li>\n\n\n\n<li><strong>Boosts Confidence<\/strong>: Automated approval for production readiness.<\/li>\n\n\n\n<li><strong>Compliance<\/strong>: Demonstrate audit-ready post-deployment checks.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">\u274c Limitations<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Limitation<\/th><th>Description<\/th><\/tr><\/thead><tbody><tr><td>False Positives<\/td><td>Script failures may not indicate real issues.<\/td><\/tr><tr><td>Maintenance Overhead<\/td><td>Scripts and rules need updates.<\/td><\/tr><tr><td>Latency<\/td><td>Slows down pipeline slightly due to extra checks.<\/td><\/tr><tr><td>Tool Complexity<\/td><td>Integrating with legacy systems can be tough.<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\">7. Best Practices &amp; Recommendations<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">\ud83d\udd10 Security<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Include secret scanning in post-deploy hooks.<\/li>\n\n\n\n<li>Run static and dynamic scans (SAST\/DAST).<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">\u2699\ufe0f Performance<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use lightweight checks to avoid long pipeline delays.<\/li>\n\n\n\n<li>Run heavy tests (load\/stress) asynchronously.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">\ud83d\udee1\ufe0f Compliance<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Log results for SOC2, ISO audits.<\/li>\n\n\n\n<li>Tag health-check runs with ticket\/commit ID for traceability.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">\ud83d\udd04 Automation<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Auto-rollback on 5xx errors or security breaches.<\/li>\n\n\n\n<li>Auto-approve if all checks pass within SLA window.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\">8. Comparison with Alternatives<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Feature<\/th><th>Deployment Health Check<\/th><th>Synthetic Monitoring<\/th><th>Manual QA<\/th><\/tr><\/thead><tbody><tr><td>Automation<\/td><td>\u2705 Yes<\/td><td>\u2705 Yes<\/td><td>\u274c No<\/td><\/tr><tr><td>Security Checks<\/td><td>\u2705 Yes<\/td><td>\u274c No<\/td><td>\u274c Rare<\/td><\/tr><tr><td>CI\/CD Integration<\/td><td>\u2705 Strong<\/td><td>Moderate<\/td><td>Poor<\/td><\/tr><tr><td>Cost<\/td><td>Low<\/td><td>Medium<\/td><td>High<\/td><\/tr><tr><td>Latency<\/td><td>Minimal<\/td><td>Real-time<\/td><td>Slow<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><strong>Use Deployment Health Check<\/strong> when:<\/p>\n<\/blockquote>\n\n\n\n<ul class=\"wp-block-list\">\n<li>CI\/CD is active.<\/li>\n\n\n\n<li>Immediate rollback or alerting is needed.<\/li>\n\n\n\n<li>Security and performance matter equally.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\">9. Conclusion<\/h2>\n\n\n\n<p><strong>Deployment Health Checks<\/strong> are vital in modern <strong>DevSecOps<\/strong> workflows. They bridge the gap between &#8220;deployment&#8221; and &#8220;confidence&#8221; by ensuring systems are working, secure, and compliant <strong>after code reaches production<\/strong>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\ud83d\udd2e Future Trends<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>AI-based health predictions using observability data.<\/li>\n\n\n\n<li>Fully autonomous rollbacks driven by ML insights.<\/li>\n\n\n\n<li>Health-check-as-a-service platforms integrated with GitOps.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n","protected":false},"excerpt":{"rendered":"<p>1. Introduction &amp; Overview What is Deployment Health Check? A Deployment Health Check is a set of automated and\/or manual [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-429","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Deployment Health Check in DevSecOps \u2013 Complete Guide - SRE School<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/sreschool.com\/blog\/deployment-health-check-in-devsecops-complete-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Deployment Health Check in DevSecOps \u2013 Complete Guide - SRE School\" \/>\n<meta property=\"og:description\" content=\"1. Introduction &amp; Overview What is Deployment Health Check? A Deployment Health Check is a set of automated and\/or manual [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/sreschool.com\/blog\/deployment-health-check-in-devsecops-complete-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"SRE School\" \/>\n<meta property=\"article:published_time\" content=\"2025-06-24T07:52:13+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-05T07:29:43+00:00\" \/>\n<meta name=\"author\" content=\"priteshgeek\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"priteshgeek\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/sreschool.com\/blog\/deployment-health-check-in-devsecops-complete-guide\/\",\"url\":\"https:\/\/sreschool.com\/blog\/deployment-health-check-in-devsecops-complete-guide\/\",\"name\":\"Deployment Health Check in DevSecOps \u2013 Complete Guide - SRE School\",\"isPartOf\":{\"@id\":\"https:\/\/sreschool.com\/blog\/#website\"},\"datePublished\":\"2025-06-24T07:52:13+00:00\",\"dateModified\":\"2026-05-05T07:29:43+00:00\",\"author\":{\"@id\":\"https:\/\/sreschool.com\/blog\/#\/schema\/person\/6a53e3870889dd6a65b2e04b7bc3d7db\"},\"breadcrumb\":{\"@id\":\"https:\/\/sreschool.com\/blog\/deployment-health-check-in-devsecops-complete-guide\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/sreschool.com\/blog\/deployment-health-check-in-devsecops-complete-guide\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/sreschool.com\/blog\/deployment-health-check-in-devsecops-complete-guide\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/sreschool.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Deployment Health Check in DevSecOps \u2013 Complete Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/sreschool.com\/blog\/#website\",\"url\":\"https:\/\/sreschool.com\/blog\/\",\"name\":\"SRESchool\",\"description\":\"Master SRE. Build Resilient Systems. Lead the Future of Reliability\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/sreschool.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/sreschool.com\/blog\/#\/schema\/person\/6a53e3870889dd6a65b2e04b7bc3d7db\",\"name\":\"priteshgeek\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/sreschool.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/231a0e8b7a02636f2fbacf8dcf4494cb1cc0d49ecc9a8165fbaeaeeaf102641a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/231a0e8b7a02636f2fbacf8dcf4494cb1cc0d49ecc9a8165fbaeaeeaf102641a?s=96&d=mm&r=g\",\"caption\":\"priteshgeek\"},\"url\":\"https:\/\/sreschool.com\/blog\/author\/priteshgeek\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Deployment Health Check in DevSecOps \u2013 Complete Guide - SRE School","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/sreschool.com\/blog\/deployment-health-check-in-devsecops-complete-guide\/","og_locale":"en_US","og_type":"article","og_title":"Deployment Health Check in DevSecOps \u2013 Complete Guide - SRE School","og_description":"1. Introduction &amp; Overview What is Deployment Health Check? A Deployment Health Check is a set of automated and\/or manual [&hellip;]","og_url":"https:\/\/sreschool.com\/blog\/deployment-health-check-in-devsecops-complete-guide\/","og_site_name":"SRE School","article_published_time":"2025-06-24T07:52:13+00:00","article_modified_time":"2026-05-05T07:29:43+00:00","author":"priteshgeek","twitter_card":"summary_large_image","twitter_misc":{"Written by":"priteshgeek","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/sreschool.com\/blog\/deployment-health-check-in-devsecops-complete-guide\/","url":"https:\/\/sreschool.com\/blog\/deployment-health-check-in-devsecops-complete-guide\/","name":"Deployment Health Check in DevSecOps \u2013 Complete Guide - SRE School","isPartOf":{"@id":"https:\/\/sreschool.com\/blog\/#website"},"datePublished":"2025-06-24T07:52:13+00:00","dateModified":"2026-05-05T07:29:43+00:00","author":{"@id":"https:\/\/sreschool.com\/blog\/#\/schema\/person\/6a53e3870889dd6a65b2e04b7bc3d7db"},"breadcrumb":{"@id":"https:\/\/sreschool.com\/blog\/deployment-health-check-in-devsecops-complete-guide\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/sreschool.com\/blog\/deployment-health-check-in-devsecops-complete-guide\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/sreschool.com\/blog\/deployment-health-check-in-devsecops-complete-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/sreschool.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Deployment Health Check in DevSecOps \u2013 Complete Guide"}]},{"@type":"WebSite","@id":"https:\/\/sreschool.com\/blog\/#website","url":"https:\/\/sreschool.com\/blog\/","name":"SRESchool","description":"Master SRE. Build Resilient Systems. Lead the Future of Reliability","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/sreschool.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Person","@id":"https:\/\/sreschool.com\/blog\/#\/schema\/person\/6a53e3870889dd6a65b2e04b7bc3d7db","name":"priteshgeek","image":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/sreschool.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/231a0e8b7a02636f2fbacf8dcf4494cb1cc0d49ecc9a8165fbaeaeeaf102641a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/231a0e8b7a02636f2fbacf8dcf4494cb1cc0d49ecc9a8165fbaeaeeaf102641a?s=96&d=mm&r=g","caption":"priteshgeek"},"url":"https:\/\/sreschool.com\/blog\/author\/priteshgeek\/"}]}},"_links":{"self":[{"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/posts\/429","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/comments?post=429"}],"version-history":[{"count":1,"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/posts\/429\/revisions"}],"predecessor-version":[{"id":430,"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/posts\/429\/revisions\/430"}],"wp:attachment":[{"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/media?parent=429"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/categories?post=429"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/tags?post=429"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}