{"id":425,"date":"2025-06-24T07:30:32","date_gmt":"2025-06-24T07:30:32","guid":{"rendered":"https:\/\/sreschool.com\/blog\/?p=425"},"modified":"2026-05-05T07:29:43","modified_gmt":"2026-05-05T07:29:43","slug":"deployment-freeze-in-devsecops-an-in-depth-tutorial","status":"publish","type":"post","link":"https:\/\/sreschool.com\/blog\/deployment-freeze-in-devsecops-an-in-depth-tutorial\/","title":{"rendered":"Deployment Freeze in DevSecOps: An In-depth Tutorial"},"content":{"rendered":"\n<h1 class=\"wp-block-heading\"><strong>1. Introduction &amp; Overview<\/strong><\/h1>\n\n\n\n<h3 class=\"wp-block-heading\">\ud83d\udd0d What is <em>Deployment Freeze<\/em>?<\/h3>\n\n\n\n<p><strong>Deployment Freeze<\/strong> is a temporary halt or restriction on software deployments to production environments. It is usually implemented during critical periods such as holidays, financial year-end, or major events to:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Minimize production risks<\/li>\n\n\n\n<li>Ensure system stability<\/li>\n\n\n\n<li>Maintain compliance and governance<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">\ud83d\udd70\ufe0f History &amp; Background<\/h3>\n\n\n\n<p>Deployment freezes have long existed in enterprise IT operations. Traditionally enforced manually, they aimed to protect critical business operations during high-traffic or high-risk periods. With the rise of DevSecOps, deployment freezes are now codified into CI\/CD pipelines using automation, ensuring secure and compliant delivery.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\ud83c\udfaf Why is it Relevant in DevSecOps?<\/h3>\n\n\n\n<p>In <strong>DevSecOps<\/strong>, continuous deployment is frequent and automated. However, during sensitive periods:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A bad release can introduce vulnerabilities or downtime.<\/li>\n\n\n\n<li>Security, auditing, and compliance needs intensify.<\/li>\n\n\n\n<li>Regulatory or stakeholder obligations may demand zero changes.<\/li>\n<\/ul>\n\n\n\n<p>Thus, <strong>Deployment Freeze<\/strong> becomes a safety control mechanism within the DevSecOps lifecycle.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>2. Core Concepts &amp; Terminology<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">\ud83d\udcd8 Key Terms<\/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>Deployment Freeze<\/strong><\/td><td>A rule or policy that blocks deployments for a time range or condition.<\/td><\/tr><tr><td><strong>Change Freeze<\/strong><\/td><td>A broader restriction on all kinds of changes\u2014not just deployments.<\/td><\/tr><tr><td><strong>Exception Window<\/strong><\/td><td>A permitted deployment period during freeze for critical fixes.<\/td><\/tr><tr><td><strong>Release Gate<\/strong><\/td><td>A conditional logic or control that restricts pipeline progression.<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">\ud83d\udd01 How it Fits into the DevSecOps Lifecycle<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>DevSecOps Phase<\/th><th>Role of Deployment Freeze<\/th><\/tr><\/thead><tbody><tr><td><strong>Plan<\/strong><\/td><td>Mark freeze periods aligned with business cycles.<\/td><\/tr><tr><td><strong>Develop<\/strong><\/td><td>Developers continue pushing code, but deployment is gated.<\/td><\/tr><tr><td><strong>Build\/Test<\/strong><\/td><td>CI\/CD builds\/tests run, but deploy stage is locked.<\/td><\/tr><tr><td><strong>Release<\/strong><\/td><td>Blocked unless explicit override exists.<\/td><\/tr><tr><td><strong>Monitor<\/strong><\/td><td>Logging and alerts configured to detect unauthorized deployments.<\/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\"><strong>3. Architecture &amp; How It Works<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">\u2699\ufe0f Components &amp; Internal Workflow<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Freeze Configuration Layer<\/strong>\n<ul class=\"wp-block-list\">\n<li>YAML\/JSON-based rules or external configuration (e.g., config maps)<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>CI\/CD Control Logic<\/strong>\n<ul class=\"wp-block-list\">\n<li>Conditions in GitHub Actions, GitLab CI, Jenkinsfiles, etc.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Approval Gate or Manual Override<\/strong>\n<ul class=\"wp-block-list\">\n<li>Required for critical\/urgent deploys.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Monitoring &amp; Auditing<\/strong>\n<ul class=\"wp-block-list\">\n<li>Ensures freeze policy is respected.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">\ud83e\udded Architecture Diagram (Textual)<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>+-----------------------------+\n|        Developer Code       |\n+--------------+--------------+\n               |\n               v\n      +--------+---------+\n      |      CI\/CD Tool   | &lt;- (e.g., Jenkins, GitHub Actions)\n      +--------+---------+\n               |\n     +---------+----------+\n     |  Check Deployment   |\n     |    Freeze Policy    |\n     +---------+----------+\n               |\n      +--------+--------+\n      | Allowed to Deploy? |\n      +--------+--------+\n               | Yes\/No\n               v\n      +--------------------+\n      | Deploy to Prod Env |\n      +--------------------+\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">\ud83d\udd17 Integration Points<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Tool<\/th><th>Integration Method<\/th><\/tr><\/thead><tbody><tr><td><strong>GitHub Actions<\/strong><\/td><td>Use <code>if: !env.FREEZE_ACTIVE<\/code><\/td><\/tr><tr><td><strong>Jenkins<\/strong><\/td><td>Use conditional <code>when<\/code> block or scripted pipeline<\/td><\/tr><tr><td><strong>GitLab CI<\/strong><\/td><td>Add rules under <code>only\/except<\/code> or <code>rules:<\/code><\/td><\/tr><tr><td><strong>ArgoCD \/ Spinnaker<\/strong><\/td><td>Use freeze window APIs<\/td><\/tr><tr><td><strong>Terraform<\/strong><\/td><td>Enforce via external variables or conditionals<\/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\"><strong>4. Installation &amp; Getting Started<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">\ud83d\udee0\ufe0f Prerequisites<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>CI\/CD tool of choice (e.g., GitHub Actions, Jenkins)<\/li>\n\n\n\n<li>Basic YAML scripting knowledge<\/li>\n\n\n\n<li>Access to environment variables or configuration management<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">\ud83d\udd27 Hands-on Example: GitHub Actions Freeze<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>name: Deploy to Production\n\non:\n  push:\n    branches: &#091; main ]\n\njobs:\n  deploy:\n    runs-on: ubuntu-latest\n    if: env.DEPLOYMENT_FREEZE != 'true'\n    steps:\n      - name: Checkout\n        uses: actions\/checkout@v3\n\n      - name: Deploy Script\n        run: |\n          echo \"Deploying to production...\"\n<\/code><\/pre>\n\n\n\n<p>\ud83d\udd10 <strong>Tip<\/strong>: Set <code>DEPLOYMENT_FREEZE=true<\/code> in repository\/environment secrets during freeze.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\ud83d\udca1 Alternative: Jenkins Example<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>pipeline {\n  agent any\n  environment {\n    DEPLOYMENT_FREEZE = 'true'\n  }\n  stages {\n    stage('Deploy') {\n      when {\n        expression { return env.DEPLOYMENT_FREEZE != 'true' }\n      }\n      steps {\n        echo 'Deploying to Production...'\n      }\n    }\n  }\n}\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>5. Real-World Use Cases<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">\ud83c\udfe2 1. E-commerce Website (Black Friday Freeze)<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>During November sales, prevent all production deploys.<\/li>\n\n\n\n<li>Only critical hotfixes via approval.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">\ud83c\udfe6 2. Banking Sector (Quarter-End Freeze)<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Financial audits require freeze from Day 25 to Month End.<\/li>\n\n\n\n<li>Any deployment requires CISO approval.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">\ud83d\ude80 3. SaaS Startup (Investor Demos)<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Scheduled freeze during major investor product demo days.<\/li>\n\n\n\n<li>Only performance monitoring allowed, no code change.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">\ud83c\udfe5 4. Healthcare Provider (HIPAA Compliance)<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Freeze enforced before annual compliance audits.<\/li>\n\n\n\n<li>All CI\/CD pipelines locked down except vulnerability scanning.<\/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\"><strong>6. Benefits &amp; Limitations<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">\u2705 Key Benefits<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Operational Stability<\/strong>: Avoids outages during peak load.<\/li>\n\n\n\n<li><strong>Security Assurance<\/strong>: No unvetted code reaches production.<\/li>\n\n\n\n<li><strong>Compliance<\/strong>: Supports auditability and regulatory needs.<\/li>\n\n\n\n<li><strong>Business Confidence<\/strong>: Reduces deployment-related anxiety during critical events.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">\u274c Limitations<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Developer Frustration<\/strong>: Slows innovation if not well-managed.<\/li>\n\n\n\n<li><strong>Emergency Overrides<\/strong>: Needs a strong process for urgent deploys.<\/li>\n\n\n\n<li><strong>Complex Coordination<\/strong>: Requires planning across multiple teams.<\/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\"><strong>7. Best Practices &amp; Recommendations<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">\ud83d\udd10 Security &amp; Compliance<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Enforce freeze via CI\/CD, not manual ops.<\/li>\n\n\n\n<li>Integrate with IAM and approval workflows.<\/li>\n\n\n\n<li>Log and audit any override activity.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">\u2699\ufe0f Automation &amp; Performance<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use dynamic calendars (e.g., Google Calendar API) for freeze dates.<\/li>\n\n\n\n<li>Notify teams in Slack\/Email before freeze starts.<\/li>\n\n\n\n<li>Build dashboards for visibility into freeze status.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">\ud83d\udee1\ufe0f Maintenance Tips<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Periodically review and update freeze windows.<\/li>\n\n\n\n<li>Automate testing even during freeze periods to avoid bottlenecks post-freeze.<\/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\"><strong>8. Comparison with Alternatives<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Approach<\/th><th>Pros<\/th><th>Cons<\/th><th>When to Use<\/th><\/tr><\/thead><tbody><tr><td><strong>Deployment Freeze<\/strong><\/td><td>Simple, controllable, proven<\/td><td>Rigid, may delay delivery<\/td><td>Short-term stability need<\/td><\/tr><tr><td><strong>Canary Releases<\/strong><\/td><td>Lower risk, real-time feedback<\/td><td>Still deploys code<\/td><td>When some release is okay<\/td><\/tr><tr><td><strong>Feature Flags<\/strong><\/td><td>Flexible, can be turned off<\/td><td>Complexity in flag management<\/td><td>For partial rollout cases<\/td><\/tr><tr><td><strong>Blue-Green Deploys<\/strong><\/td><td>Instant rollback, zero downtime<\/td><td>Resource-intensive<\/td><td>High-availability needed<\/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\"><strong>9. Conclusion<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">\ud83d\udd1a Final Thoughts<\/h3>\n\n\n\n<p>Deployment Freeze is not a relic of waterfall processes\u2014it is a modern-day safety mechanism essential in secure DevSecOps pipelines. When integrated with automation and intelligent policy gates, it allows for safe innovation without sacrificing reliability.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>1. Introduction &amp; Overview \ud83d\udd0d What is Deployment Freeze? Deployment Freeze is a temporary halt or restriction on software deployments [&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-425","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 Freeze in DevSecOps: An In-depth Tutorial - 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-freeze-in-devsecops-an-in-depth-tutorial\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Deployment Freeze in DevSecOps: An In-depth Tutorial - SRE School\" \/>\n<meta property=\"og:description\" content=\"1. Introduction &amp; Overview \ud83d\udd0d What is Deployment Freeze? Deployment Freeze is a temporary halt or restriction on software deployments [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/sreschool.com\/blog\/deployment-freeze-in-devsecops-an-in-depth-tutorial\/\" \/>\n<meta property=\"og:site_name\" content=\"SRE School\" \/>\n<meta property=\"article:published_time\" content=\"2025-06-24T07:30:32+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-freeze-in-devsecops-an-in-depth-tutorial\/\",\"url\":\"https:\/\/sreschool.com\/blog\/deployment-freeze-in-devsecops-an-in-depth-tutorial\/\",\"name\":\"Deployment Freeze in DevSecOps: An In-depth Tutorial - SRE School\",\"isPartOf\":{\"@id\":\"https:\/\/sreschool.com\/blog\/#website\"},\"datePublished\":\"2025-06-24T07:30:32+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-freeze-in-devsecops-an-in-depth-tutorial\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/sreschool.com\/blog\/deployment-freeze-in-devsecops-an-in-depth-tutorial\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/sreschool.com\/blog\/deployment-freeze-in-devsecops-an-in-depth-tutorial\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/sreschool.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Deployment Freeze in DevSecOps: An In-depth Tutorial\"}]},{\"@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 Freeze in DevSecOps: An In-depth Tutorial - 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-freeze-in-devsecops-an-in-depth-tutorial\/","og_locale":"en_US","og_type":"article","og_title":"Deployment Freeze in DevSecOps: An In-depth Tutorial - SRE School","og_description":"1. Introduction &amp; Overview \ud83d\udd0d What is Deployment Freeze? Deployment Freeze is a temporary halt or restriction on software deployments [&hellip;]","og_url":"https:\/\/sreschool.com\/blog\/deployment-freeze-in-devsecops-an-in-depth-tutorial\/","og_site_name":"SRE School","article_published_time":"2025-06-24T07:30:32+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-freeze-in-devsecops-an-in-depth-tutorial\/","url":"https:\/\/sreschool.com\/blog\/deployment-freeze-in-devsecops-an-in-depth-tutorial\/","name":"Deployment Freeze in DevSecOps: An In-depth Tutorial - SRE School","isPartOf":{"@id":"https:\/\/sreschool.com\/blog\/#website"},"datePublished":"2025-06-24T07:30:32+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-freeze-in-devsecops-an-in-depth-tutorial\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/sreschool.com\/blog\/deployment-freeze-in-devsecops-an-in-depth-tutorial\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/sreschool.com\/blog\/deployment-freeze-in-devsecops-an-in-depth-tutorial\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/sreschool.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Deployment Freeze in DevSecOps: An In-depth Tutorial"}]},{"@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\/425","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=425"}],"version-history":[{"count":1,"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/posts\/425\/revisions"}],"predecessor-version":[{"id":426,"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/posts\/425\/revisions\/426"}],"wp:attachment":[{"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/media?parent=425"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/categories?post=425"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/tags?post=425"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}