{"id":30140,"date":"2024-01-12T11:00:33","date_gmt":"2024-01-12T10:00:33","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/?p=30140"},"modified":"2024-02-22T21:28:44","modified_gmt":"2024-02-22T20:28:44","slug":"install-neuvector-5-on-openshift-local-4-14","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/","title":{"rendered":"Install NeuVector 5 on OpenShift Local 4.14"},"content":{"rendered":"\n<p>I&#8217;ve been playing around with 2 applications recently: OpenShift from Red Hat and NeuVector from SUSE. At some point I&#8217;ve wondered if I couldn&#8217;t play with both at the same time. Read on as I&#8217;ll share some tips &amp; tricks I didn&#8217;t see anywhere else!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-the-basics\">The Basics<\/h2>\n\n\n\n<p>I&#8217;m using OpenShift Local which is free to use and I&#8217;ve installed it in an Azure VM. I&#8217;ve detailed this installation in 2 blogs if you are interested: <a href=\"https:\/\/www.dbi-services.com\/blog\/test-openshift-4-at-low-cost-in-azure\/\" target=\"_blank\" rel=\"noreferrer noopener\">Test OpenShift 4 at low cost in Azure<\/a> and <a href=\"https:\/\/www.dbi-services.com\/blog\/interacting-with-openshift-local-in-an-azure-vm\/\" target=\"_blank\" rel=\"noreferrer noopener\">Interacting with OpenShift Local in an Azure VM<\/a>.<\/p>\n\n\n\n<p>Usually I&#8217;m using NeuVector in a SUSE Rancher RKE2 cluster on which you install it in almost one click. NeuVector has been bought by SUSE and they made it open-source. NeuVector is a powerful security tool that scan your cluster (nodes and containers) for vulnerabilities, scan images in your registry, display on a graph the network connections between pods and can detect in real time attacks like log4j or credit card exfiltration. Wouaw! That was a mouthful! It is the only cloud-native application (means it runs into containers) I know that groups all those features in one place. NeuVector documentation can be found <a href=\"https:\/\/open-docs.neuvector.com\" target=\"_blank\" rel=\"noreferrer noopener\">here<\/a>.<\/p>\n\n\n\n<p>On the homepage of this documentation you can see there is an OpenShift Operator so of course I wanted to test it!<\/p>\n\n\n\n<p>The installation of NeuVector in OpenShift is quite easy and you can follow all the steps in this blog from SUSE <a href=\"https:\/\/www.suse.com\/c\/container-security-how-to-quickly-install-neuvector-5-on-openshift-4\/\" target=\"_blank\" rel=\"noreferrer noopener\">here<\/a>. All right, then this is the end of my blog, see you next time!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-the-openshift-local-infrastructure\">The OpenShift Local Infrastructure<\/h2>\n\n\n\n<p>Not so quick, I&#8217;ve promised you some tips &amp; tricks in my introduction and it would not be nice from me to not keep it!<\/p>\n\n\n\n<p>But let start from the beginning. You may wonder what is an OpenShift Operator. I&#8217;m glad you asked! An Operator is simply put an application you can install in your OpenShift cluster with a few clicks. From the OpenShift Web Console you have the Operator Hub which is a repository with all the application you can install. You do a search, as NeuVector, and you can install it. The Operators are a great addition of OpenShift in comparison to vanilla Kubernetes.<\/p>\n\n\n\n<p>Once the Operator of your application is installed (here NeuVector), you can then deploy one or several instances of it in your OpenShift cluster.<\/p>\n\n\n\n<p>By using OpenShift local, you will need to tweak a bit this Neuvector Operator instance before its deployment.<\/p>\n\n\n\n<p>First, you can see from the <a href=\"https:\/\/open-docs.neuvector.com\/basics\/requirements\" target=\"_blank\" rel=\"noreferrer noopener\">NeuVector requirements<\/a> that it needs some vCPU and memory and so you need to use an Azure VM with adequate capacity. I&#8217;ve then used a VM size D8s_v3 instead of D4s_v3 I used in my previous blogs.<\/p>\n\n\n\n<p>Then, you have learned from my previous blogs that we are using the tool <strong>crc<\/strong> to build our OpenShift Local cluster. That cluster is using just one node. The size of this cluster by default is not enough to work comfortably with NeuVector. The settings that worked for me are:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\n$ cat .crc\/crc.json\n{\n  &quot;consent-telemetry&quot;: &quot;no&quot;,\n  &quot;cpus&quot;: 8,\n  &quot;disk-size&quot;: 100,\n  &quot;memory&quot;: 20480\n}\n<\/pre><\/div>\n\n\n<p>You can set those parameters as follows before starting the cluster:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\n$ crc config set cpus 8\n$ crc config set memory 20480\n$ crc config set disk-size 100\n\n$ crc start\n<\/pre><\/div>\n\n\n<p>At this stage you have a proper OpenShift environment to work with and you can install NeuVector as described by SUSE. But&#8230;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-the-openshift-operator-customization\">The OpenShift Operator Customization<\/h2>\n\n\n\n<p>After installing the NeuVector Operator and before creating an instance of it that will deploy the application in the cluster, we have to tweak a little bit its YAML file as shown below:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"557\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/NeuVector-Installed-Operators-1024x557.png\" alt=\"\" class=\"wp-image-30144\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/NeuVector-Installed-Operators-1024x557.png 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/NeuVector-Installed-Operators-300x163.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/NeuVector-Installed-Operators-768x418.png 768w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/NeuVector-Installed-Operators-1536x835.png 1536w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/NeuVector-Installed-Operators-2048x1114.png 2048w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>By default the admin password for the Web interface of NeuVector is empty (&#8220;&#8221;) but if you deploy the application like this, NeuVector will not allow you to authenticate with that empty password. So set a password here by modifiying this YAML parameters.<\/p>\n\n\n\n<p>I&#8217;ve also noticed that you must change one parameter at a time then click on &#8220;Save&#8221; and click on &#8220;Reload&#8221;. If you change several parameters at once, they will not be taken into account for some reasons.<\/p>\n\n\n\n<p>Other parameters you can change here are the number of replicas of the controller and scanner\u00a0components of NeuVector. You can reduce them from 3 to 1. Do it in the configuration parts of the YAML file but not below the &#8220;Status&#8221; section that will be changed dynamically. And as said just above do it one at a time.<\/p>\n\n\n\n<p>The controller component is deployed with High Availability in mind but as we are using only one node we can save resources by scaling it down. The scanner component scans for images, containers and nodes in the cluster but in our lab environment with one node and a few applications, one will be enough.<\/p>\n\n\n\n<p>At this stage you have the NeuVector Operator installed and customized. This operator is itself deployed as a deployment in the OpenShift cluster and if you are curious you can check that the YAML changes you did took effect immediately with the following command:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\n$ oc get deploy neuvector-operator -oyaml\n<\/pre><\/div>\n\n\n<p>Now you can create the instance and the route as explained in the SUSE blog and you&#8217;ll be good to go!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wrap-up\">Wrap up<\/h2>\n\n\n\n<p>I hope that helps, let me know if you are using NeuVector with OpenShift and what is your experience with it.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>I&#8217;ve been playing around with 2 applications recently: OpenShift from Red Hat and NeuVector from SUSE. At some point I&#8217;ve wondered if I couldn&#8217;t play with both at the same time. Read on as I&#8217;ll share some tips &amp; tricks I didn&#8217;t see anywhere else! The Basics I&#8217;m using OpenShift Local which is free to [&hellip;]<\/p>\n","protected":false},"author":109,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1320,1522],"tags":[1338,2634,3212,1344],"type_dbi":[2881,2943,3213,3186],"class_list":["post-30140","post","type-post","status-publish","format-standard","hentry","category-devops","category-kubernetes","tag-azure","tag-kubernetes-2","tag-neuvector","tag-openshift","type-azure","type-kubernetes","type-neuvector","type-openshift"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Install NeuVector 5 on OpenShift Local 4.14 - dbi Blog<\/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:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install NeuVector 5 on OpenShift Local 4.14\" \/>\n<meta property=\"og:description\" content=\"I&#8217;ve been playing around with 2 applications recently: OpenShift from Red Hat and NeuVector from SUSE. At some point I&#8217;ve wondered if I couldn&#8217;t play with both at the same time. Read on as I&#8217;ll share some tips &amp; tricks I didn&#8217;t see anywhere else! The Basics I&#8217;m using OpenShift Local which is free to [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2024-01-12T10:00:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-22T20:28:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/NeuVector-Installed-Operators-1024x557.png\" \/>\n<meta name=\"author\" content=\"DevOps\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DevOps\" \/>\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\":\"Article\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/\"},\"author\":{\"name\":\"DevOps\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/4cd1b5f8a3de93f05a16ab8d7d2b7735\"},\"headline\":\"Install NeuVector 5 on OpenShift Local 4.14\",\"datePublished\":\"2024-01-12T10:00:33+00:00\",\"dateModified\":\"2024-02-22T20:28:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/\"},\"wordCount\":868,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/NeuVector-Installed-Operators-1024x557.png\",\"keywords\":[\"Azure\",\"kubernetes\",\"neuvector\",\"OpenShift\"],\"articleSection\":[\"DevOps\",\"Kubernetes\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/\",\"name\":\"Install NeuVector 5 on OpenShift Local 4.14 - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/NeuVector-Installed-Operators-1024x557.png\",\"datePublished\":\"2024-01-12T10:00:33+00:00\",\"dateModified\":\"2024-02-22T20:28:44+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/4cd1b5f8a3de93f05a16ab8d7d2b7735\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/NeuVector-Installed-Operators.png\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/NeuVector-Installed-Operators.png\",\"width\":2810,\"height\":1528},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install NeuVector 5 on OpenShift Local 4.14\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/4cd1b5f8a3de93f05a16ab8d7d2b7735\",\"name\":\"DevOps\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/cdd2dd7441774355062c0f0f68612296b059cd1e2ff6c7af0b15dba0ed64a85f?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/cdd2dd7441774355062c0f0f68612296b059cd1e2ff6c7af0b15dba0ed64a85f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/cdd2dd7441774355062c0f0f68612296b059cd1e2ff6c7af0b15dba0ed64a85f?s=96&d=mm&r=g\",\"caption\":\"DevOps\"},\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/devops\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Install NeuVector 5 on OpenShift Local 4.14 - dbi Blog","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:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/","og_locale":"en_US","og_type":"article","og_title":"Install NeuVector 5 on OpenShift Local 4.14","og_description":"I&#8217;ve been playing around with 2 applications recently: OpenShift from Red Hat and NeuVector from SUSE. At some point I&#8217;ve wondered if I couldn&#8217;t play with both at the same time. Read on as I&#8217;ll share some tips &amp; tricks I didn&#8217;t see anywhere else! The Basics I&#8217;m using OpenShift Local which is free to [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/","og_site_name":"dbi Blog","article_published_time":"2024-01-12T10:00:33+00:00","article_modified_time":"2024-02-22T20:28:44+00:00","og_image":[{"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/NeuVector-Installed-Operators-1024x557.png","type":"","width":"","height":""}],"author":"DevOps","twitter_card":"summary_large_image","twitter_misc":{"Written by":"DevOps","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/"},"author":{"name":"DevOps","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/4cd1b5f8a3de93f05a16ab8d7d2b7735"},"headline":"Install NeuVector 5 on OpenShift Local 4.14","datePublished":"2024-01-12T10:00:33+00:00","dateModified":"2024-02-22T20:28:44+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/"},"wordCount":868,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/NeuVector-Installed-Operators-1024x557.png","keywords":["Azure","kubernetes","neuvector","OpenShift"],"articleSection":["DevOps","Kubernetes"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/","url":"https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/","name":"Install NeuVector 5 on OpenShift Local 4.14 - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/NeuVector-Installed-Operators-1024x557.png","datePublished":"2024-01-12T10:00:33+00:00","dateModified":"2024-02-22T20:28:44+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/4cd1b5f8a3de93f05a16ab8d7d2b7735"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/NeuVector-Installed-Operators.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/NeuVector-Installed-Operators.png","width":2810,"height":1528},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/install-neuvector-5-on-openshift-local-4-14\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install NeuVector 5 on OpenShift Local 4.14"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/4cd1b5f8a3de93f05a16ab8d7d2b7735","name":"DevOps","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/cdd2dd7441774355062c0f0f68612296b059cd1e2ff6c7af0b15dba0ed64a85f?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/cdd2dd7441774355062c0f0f68612296b059cd1e2ff6c7af0b15dba0ed64a85f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cdd2dd7441774355062c0f0f68612296b059cd1e2ff6c7af0b15dba0ed64a85f?s=96&d=mm&r=g","caption":"DevOps"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/devops\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/30140","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/109"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=30140"}],"version-history":[{"count":14,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/30140\/revisions"}],"predecessor-version":[{"id":30155,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/30140\/revisions\/30155"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=30140"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=30140"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=30140"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=30140"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}