{"id":25738,"date":"2023-06-26T10:16:07","date_gmt":"2023-06-26T08:16:07","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/?p=25738"},"modified":"2023-06-26T10:16:09","modified_gmt":"2023-06-26T08:16:09","slug":"deploy-awx-operator-with-helm-using-images-from-a-local-registry","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/","title":{"rendered":"Deploy awx-operator with Helm using images from a local registry"},"content":{"rendered":"\n<p>You want to deploy Ansible AWX on a Kubernetes cluster using <a href=\"https:\/\/github.com\/ansible\/awx-operator\" target=\"_blank\" rel=\"noreferrer noopener\">awx-operator<\/a>, but your security policy requires you to use a local registry to store the necessary container images ?<\/p>\n\n\n\n<p>Okay, let&#8217;s see how to do this using Helm. <\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"496\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/06\/awx-helm-1024x496.png\" alt=\"\" class=\"wp-image-26219\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/06\/awx-helm-1024x496.png 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/06\/awx-helm-300x145.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/06\/awx-helm-768x372.png 768w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/06\/awx-helm.png 1323w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Default deployment<\/h2>\n\n\n\n<p>By reading the awx-operator <a href=\"https:\/\/github.com\/ansible\/awx-operator\" target=\"_blank\" rel=\"noreferrer noopener\">documentation<\/a>, you should have a values file similar to this one (with spec values according to your needs):<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: yaml; title: ; notranslate\" title=\"\">\n---\nAWX:\n  enabled: true\n  name: awx-demo\n  spec:\n    service_type: ClusterIP\n<\/pre><\/div>\n\n\n<p>Then add awx-operator repository to Helm and deploy it:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; gutter: false; title: ; notranslate\" title=\"\">\n$ helm repo add awx-operator https:\/\/ansible.github.io\/awx-operator\/\n&quot;awx-operator&quot; has been added to your repositories\n\n$ helm repo update\nHang tight while we grab the latest from your chart repositories...\n...Successfully got an update from the &quot;awx-operator&quot; chart repository\n...Successfully got an update from the &quot;harbor&quot; chart repository\n...Successfully got an update from the &quot;komodorio&quot; chart repository\nUpdate Complete. \u2388Happy Helming!\u2388\n\n$ helm install -n awx --create-namespace awx-demo awx-operator\/awx-operator -f awx.yaml\nRelease &quot;awx-demo&quot; does not exist. Installing it now.\nNAME: awx-demo\nLAST DEPLOYED: Fri Jun  9 15:23:27 2023\nNAMESPACE: awx\nSTATUS: deployed\nREVISION: 1\nTEST SUITE: None\nNOTES:\nAWX Operator installed with Helm Chart version 2.2.1\n<\/pre><\/div>\n\n\n<p>After a bit of time, AWX should be well deployed:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\n$ kubectl get pods -n awx\nNAME                                               READY   STATUS    RESTARTS   AGE\nawx-operator-controller-manager-7695c6c799-9sh6x   2\/2     Running   0          41m\nawx-demo-postgres-13-0                             1\/1     Running   0          40m\nawx-demo-task-57ccc9c6d-c6qx7                      4\/4     Running   0          40m\nawx-demo-web-5f486b545-6vfm2                       3\/3     Running   0          40m\n<\/pre><\/div>\n\n\n<h2 class=\"wp-block-heading\">Set components images<\/h2>\n\n\n\n<p>We just deployed our AWX with the default images, which one are in use?<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\n$ kubectl get pods -n awx -o jsonpath=&#039;{range .items&#x5B;*].spec.containers&#x5B;*]}{.image}{&quot;\\n&quot;}{end}&#039;\ngcr.io\/kubebuilder\/kube-rbac-proxy:v0.13.0\nquay.io\/ansible\/awx-operator:2.2.1\npostgres:13\ndocker.io\/redis:7\nquay.io\/ansible\/awx:22.3.0\nquay.io\/ansible\/awx-ee:latest\nquay.io\/ansible\/awx:22.3.0\ndocker.io\/redis:7\nquay.io\/ansible\/awx:22.3.0\nquay.io\/ansible\/awx:22.3.0\n<\/pre><\/div>\n\n\n<p>Now we want to use images stored on a local registry, for example here, we use <a href=\"https:\/\/goharbor.io\/\" target=\"_blank\" rel=\"noreferrer noopener\">Harbor<\/a>. Harbor is deployed on Kubernetes cluster and works as a remote registry replication.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"461\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/06\/image-27-1024x461.png\" alt=\"\" class=\"wp-image-25799\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/06\/image-27-1024x461.png 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/06\/image-27-300x135.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/06\/image-27-768x346.png 768w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/06\/image-27.png 1428w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p><br>In the awx-operator documentation, we can find values to set in the &#8220;spec&#8221; dictionary for various image locations. Here the new &#8220;awx.yaml&#8221; values file with these changes:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: yaml; title: ; notranslate\" title=\"\">\n---\nAWX:\n  enabled: true\n  name: &quot;awx-demo&quot;\n  spec:\n    hostname: awx-demo.dwi.local\n    service_type: ClusterIP\n    image: harbor.dwi.local\/awx-demo\/awx\n    image_version: latest\n    postgres_image: harbor.dwi.local\/awx-demo\/postgres\n    postgres_image_version: &quot;13&quot;\n    ee_images:\n    - name: AWX Demo EE\n      image: harbor.dwi.local\/awx-demo\/awx-ee:latest\n    control_plane_ee_image: harbor.dwi.local\/awx-demo\/awx-ee:latest\n    redis_image: harbor.dwi.local\/awx-demo\/redis\n    redis_image_version: &quot;7&quot;\n<\/pre><\/div>\n\n\n<p>Now let&#8217;s delete and reinstall awx-operator completely to see what happens:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\n$ helm delete -n awx awx-demo\nrelease &quot;awx-demo&quot; uninstalled\n$ helm install -n awx --create-namespace awx-demo awx-operator\/awx-operator -f awx.yaml\nNAME: awx-demo\nLAST DEPLOYED: Fri Jun  9 15:45:18 2023\nNAMESPACE: awx\nSTATUS: deployed\nREVISION: 1\nTEST SUITE: None\nNOTES:\nAWX Operator installed with Helm Chart version 2.2.1\n$ kubectl get pods -n awx -o jsonpath=&#039;{range .items&#x5B;*].spec.containers&#x5B;*]}{.image}{&quot;\\n&quot;}{end}&#039;\ngcr.io\/kubebuilder\/kube-rbac-proxy:v0.13.0\nquay.io\/ansible\/awx-operator:2.2.1\nharbor.dwi.local\/awx-demo\/postgres:13\nharbor.dwi.local\/awx-demo\/redis:7\nharbor.dwi.local\/awx-demo\/awx:latest\nharbor.dwi.local\/awx-demo\/awx-ee:latest\nharbor.dwi.local\/awx-demo\/awx:latest\nharbor.dwi.local\/awx-demo\/redis:7\nharbor.dwi.local\/awx-demo\/awx:latest\nharbor.dwi.local\/awx-demo\/awx:latest\n<\/pre><\/div>\n\n\n<p>Now, most pods are using images from our local registry, with the exception of kube-rbac-proxy and awx-operator. Unfortunately, there are no values in the Helm to change them&#8230; So we&#8217;re going to rebuild the Helm chart \ud83d\udcaa<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Rebuild Helm chart<\/h2>\n\n\n\n<p><br>First we will clone the awx-operator project in \/tmp\/awx-operator<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\n$ git clone https:\/\/github.com\/ansible\/awx-operator.git \/tmp\/awx-operator\nCloning into &#039;\/tmp\/awx-operator&#039;...\nremote: Enumerating objects: 8796, done.\nremote: Counting objects: 100% (1432\/1432), done.\nremote: Compressing objects: 100% (224\/224), done.\nremote: Total 8796 (delta 1251), reused 1306 (delta 1203), pack-reused 7364\nReceiving objects: 100% (8796\/8796), 2.35 MiB | 3.53 MiB\/s, done.\nResolving deltas: 100% (5062\/5062), done.\n$ cd \/tmp\/awx-operator\n<\/pre><\/div>\n\n\n<p>The Helm chart is not directly sourced in the project, so we will use the Makefile that transforms the Kustomize into a Helm chart, and here&#8217;s some good news: we have two variables to define image and version of the awx-operator (IMAGE_TAG_BASE and VERSION).<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\n$ IMAGE_TAG_BASE=harbor.dwi.local\/awx-demo\/awx-operator VERSION=2.2.1 make helm-chart\nmkdir -p charts\n== KUSTOMIZE: Set image and chart label ==\ncd config\/manager &amp;&amp; \/tmp\/awx-operator\/bin\/kustomize edit set image controller=harbor.dwi.local\/awx-demo\/awx-operator:latest\ncd config\/manager &amp;&amp; \/tmp\/awx-operator\/bin\/kustomize edit set label helm.sh\/chart:awx-operator\ncd config\/default &amp;&amp; \/tmp\/awx-operator\/bin\/kustomize edit set label helm.sh\/chart:awx-operator\n== Gather Helm Chart Metadata ==\n&#x5B;...]\nHelm chart successfully configured for awx-operator version 2.2.1\n<\/pre><\/div>\n\n\n<p>Once this has been done, we will manually modify the template that uses the kube-rbac-proxy image. So, using vi (or another editor), edit the file \/tmp\/awx-operator\/charts\/awx-operator\/templates\/deployment-awx-operator-controller-manager.yaml<br>Modify line:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: yaml; title: ; notranslate\" title=\"\">\n            image: gcr.io\/kubebuilder\/kube-rbac-proxy:v0.13.0\n<\/pre><\/div>\n\n\n<p>To match the image on your local registry<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: yaml; title: ; notranslate\" title=\"\">\n            image: harbor.dwi.local\/awx-demo\/kube-rbac-proxy:v0.13.0\n<\/pre><\/div>\n\n\n<p>We can finally delete the actual Helm release and deploy our custom awx-operator Helm chart:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\n$ helm delete -n awx awx-demo\nrelease &quot;awx-demo&quot; uninstalled\n$ helm install -n awx --create-namespace awx-demo \/tmp\/awx-operator\/charts\/awx-operator -f awx.yaml\nNAME: awx-demo\nLAST DEPLOYED: Fri Jun 23 01:46:27 2023\nNAMESPACE: awx\nSTATUS: deployed\nREVISION: 1\nTEST SUITE: None\nNOTES:\nAWX Operator installed with Helm Chart version 2.2.1\n<\/pre><\/div>\n\n\n<p>Wait a few seconds for all the pods to start up correctly, then you can list the images used:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\n$ kubectl get pods -n awx -o jsonpath=&#039;{range .items&#x5B;*].spec.containers&#x5B;*]}{.image}{&quot;\\n&quot;}{end}&#039;\nharbor.dwi.local\/awx-demo\/kube-rbac-proxy:v0.13.0\nharbor.dwi.local\/awx-demo\/awx-operator:2.2.1\nharbor.dwi.local\/awx-demo\/postgres:13\nharbor.dwi.local\/awx-demo\/redis:7\nharbor.dwi.local\/awx-demo\/awx:latest\nharbor.dwi.local\/awx-demo\/awx-ee:latest\nharbor.dwi.local\/awx-demo\/awx:latest\nharbor.dwi.local\/awx-demo\/redis:7\nharbor.dwi.local\/awx-demo\/awx:latest\nharbor.dwi.local\/awx-demo\/awx:latest\n<\/pre><\/div>\n\n\n<p>Congratulations ! You now have an AWX installed on your Kubernetes cluster that using only local images \ud83c\udf89<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"516\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/06\/Screenshot-from-2023-06-23-02-59-34-1024x516.png\" alt=\"\" class=\"wp-image-26221\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/06\/Screenshot-from-2023-06-23-02-59-34-1024x516.png 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/06\/Screenshot-from-2023-06-23-02-59-34-300x151.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/06\/Screenshot-from-2023-06-23-02-59-34-768x387.png 768w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/06\/Screenshot-from-2023-06-23-02-59-34.png 1440w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>You want to deploy Ansible AWX on a Kubernetes cluster using awx-operator, but your security policy requires you to use a local registry to store the necessary container images ? Okay, let&#8217;s see how to do this using Helm. Default deployment By reading the awx-operator documentation, you should have a values file similar to this [&hellip;]<\/p>\n","protected":false},"author":107,"featured_media":25741,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1321,1320,1522],"tags":[150,2431,708,2894,2432,151,1523,2435],"type_dbi":[],"class_list":["post-25738","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ansible","category-devops","category-kubernetes","tag-ansible","tag-ansible-tower","tag-automation","tag-automation-platform","tag-awx","tag-devops","tag-helm","tag-tower"],"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>Deploy awx-operator with Helm using images from a local registry - dbi Blog<\/title>\n<meta name=\"description\" content=\"It&#039;s not that easy to define all the images used by the awx-operator Helm chart. Here are the complete steps for using images from a local registry.\" \/>\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\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Deploy awx-operator with Helm using images from a local registry\" \/>\n<meta property=\"og:description\" content=\"It&#039;s not that easy to define all the images used by the awx-operator Helm chart. Here are the complete steps for using images from a local registry.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2023-06-26T08:16:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-06-26T08:16:09+00:00\" \/>\n<meta name=\"author\" content=\"Donovan Winter\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Donovan Winter\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 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\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/\"},\"author\":{\"name\":\"Donovan Winter\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/e0f67a930d31485dd7adef9081496560\"},\"headline\":\"Deploy awx-operator with Helm using images from a local registry\",\"datePublished\":\"2023-06-26T08:16:07+00:00\",\"dateModified\":\"2023-06-26T08:16:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/\"},\"wordCount\":367,\"commentCount\":4,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/06\/logo-login.svg\",\"keywords\":[\"Ansible\",\"ansible tower\",\"Automation\",\"Automation Platform\",\"awx\",\"DevOps\",\"helm\",\"tower\"],\"articleSection\":[\"Ansible\",\"DevOps\",\"Kubernetes\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/\",\"name\":\"Deploy awx-operator with Helm using images from a local registry - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/06\/logo-login.svg\",\"datePublished\":\"2023-06-26T08:16:07+00:00\",\"dateModified\":\"2023-06-26T08:16:09+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/e0f67a930d31485dd7adef9081496560\"},\"description\":\"It's not that easy to define all the images used by the awx-operator Helm chart. Here are the complete steps for using images from a local registry.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/06\/logo-login.svg\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/06\/logo-login.svg\",\"width\":547,\"height\":389},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Deploy awx-operator with Helm using images from a local registry\"}]},{\"@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\/e0f67a930d31485dd7adef9081496560\",\"name\":\"Donovan Winter\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/84afe8f5c9c68d608f6a5308ec644228931454d5360cfc771256d3cb602b6614?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/84afe8f5c9c68d608f6a5308ec644228931454d5360cfc771256d3cb602b6614?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/84afe8f5c9c68d608f6a5308ec644228931454d5360cfc771256d3cb602b6614?s=96&d=mm&r=g\",\"caption\":\"Donovan Winter\"},\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/donovanwinter\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Deploy awx-operator with Helm using images from a local registry - dbi Blog","description":"It's not that easy to define all the images used by the awx-operator Helm chart. Here are the complete steps for using images from a local registry.","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\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/","og_locale":"en_US","og_type":"article","og_title":"Deploy awx-operator with Helm using images from a local registry","og_description":"It's not that easy to define all the images used by the awx-operator Helm chart. Here are the complete steps for using images from a local registry.","og_url":"https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/","og_site_name":"dbi Blog","article_published_time":"2023-06-26T08:16:07+00:00","article_modified_time":"2023-06-26T08:16:09+00:00","author":"Donovan Winter","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Donovan Winter","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/"},"author":{"name":"Donovan Winter","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/e0f67a930d31485dd7adef9081496560"},"headline":"Deploy awx-operator with Helm using images from a local registry","datePublished":"2023-06-26T08:16:07+00:00","dateModified":"2023-06-26T08:16:09+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/"},"wordCount":367,"commentCount":4,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/06\/logo-login.svg","keywords":["Ansible","ansible tower","Automation","Automation Platform","awx","DevOps","helm","tower"],"articleSection":["Ansible","DevOps","Kubernetes"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/","url":"https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/","name":"Deploy awx-operator with Helm using images from a local registry - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/06\/logo-login.svg","datePublished":"2023-06-26T08:16:07+00:00","dateModified":"2023-06-26T08:16:09+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/e0f67a930d31485dd7adef9081496560"},"description":"It's not that easy to define all the images used by the awx-operator Helm chart. Here are the complete steps for using images from a local registry.","breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/06\/logo-login.svg","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/06\/logo-login.svg","width":547,"height":389},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/deploy-awx-operator-with-helm-using-images-from-a-local-registry\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Deploy awx-operator with Helm using images from a local registry"}]},{"@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\/e0f67a930d31485dd7adef9081496560","name":"Donovan Winter","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/84afe8f5c9c68d608f6a5308ec644228931454d5360cfc771256d3cb602b6614?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/84afe8f5c9c68d608f6a5308ec644228931454d5360cfc771256d3cb602b6614?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/84afe8f5c9c68d608f6a5308ec644228931454d5360cfc771256d3cb602b6614?s=96&d=mm&r=g","caption":"Donovan Winter"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/donovanwinter\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/25738","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\/107"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=25738"}],"version-history":[{"count":11,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/25738\/revisions"}],"predecessor-version":[{"id":26284,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/25738\/revisions\/26284"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media\/25741"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=25738"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=25738"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=25738"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=25738"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}