{"id":516919,"date":"2018-12-03T16:41:09","date_gmt":"2018-12-03T15:41:09","guid":{"rendered":"https:\/\/www.devoteam.com\/expert-view\/using-ansible-tower-to-deploy-openshift-on-azure-episode-5\/"},"modified":"2018-12-03T16:41:09","modified_gmt":"2018-12-03T15:41:09","slug":"using-ansible-tower-to-deploy-openshift-on-azure-episode-5","status":"publish","type":"expert-view","link":"https:\/\/devoteam.info\/cz\/expert-view\/using-ansible-tower-to-deploy-openshift-on-azure-episode-5\/","title":{"rendered":"Using Ansible Tower to deploy OpenShift on Azure: episode 5"},"content":{"rendered":"<h2><b>OpenShift command-line: automate tasks &amp; install the MariaDb application<\/b><\/h2>\n<p><i><span style=\"font-weight: 400\">OpenShift has a great GUI, but if you want to automate tasks on it via Ansible the command-line is the way to move forward. In the fifth episode of our <a href=\"https:\/\/belgium.devoteam.com\/blog-post\/ansible-tower-openshift-azure-tower-installation-prerequisites\/\">blog series<\/a>, we will show you how to install MariaDb on OpenShift via this interface.<\/span><\/i><\/p>\n<p><span style=\"font-weight: 400\">The OpenShift CLI exposes commands for managing your applications, as well as lower level tools to interact with each component of your system.<\/span><\/p>\n<p><span style=\"font-weight: 400\">First we need to login to the VM.<\/span><\/p>\n<p><span style=\"font-weight: 400\">On your local machine use open <code>ssh<\/code> to connect.<\/span><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/screenshot-2018-11-13-at-10-28-41.png\" alt=\"\" class=\"aligncenter wp-image-8511 size-full\" width=\"1138\" height=\"106\"><\/p>\n<p><span><code><span style=\"font-weight: 400\">prefix<\/span><\/code><\/span><span style=\"font-weight: 400\">&nbsp;is the prefix you added in the survey while deploying OpenShift OKD.<\/span><\/p>\n<p><span style=\"font-weight: 400\"><code>towerLabKeyPrivate<\/code><\/span><span style=\"font-weight: 400\">&nbsp;is the private key created in <\/span><a href=\"https:\/\/belgium.devoteam.com\/blog-post\/ansible-tower-openshift-azure-tower-installation-prerequisites\/\" rel=\"noopener\"><span style=\"font-weight: 400\">episode 1<\/span><\/a><span style=\"font-weight: 400\">.<\/span><\/p>\n<p><span style=\"font-weight: 400\">After login we can start with the <code>oc<\/code> command, which has a built-in help system.<\/span><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/screenshot-2018-11-13-at-10-29-35-tt-width-1138-height-1118-fill-0-crop-0-bgcolor-eeeeee-except_gif-1.png\" alt=\"\" class=\"aligncenter wp-image-8521\" width=\"1100\" height=\"1081\"><\/p>\n<p><span style=\"font-weight: 400\">This <code>--help<\/code>&nbsp;flag works on different levels of the command. <\/span><\/p>\n<p><span style=\"font-weight: 400\">Example: to see the options for the <code>oc project<\/code>&nbsp;command:<\/span><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/screenshot-2018-11-13-at-10-30-03-tt-width-1134-height-1120-fill-0-crop-0-bgcolor-eeeeee-except_gif-1.png\" alt=\"\" class=\"aligncenter wp-image-8531\" width=\"1020\" height=\"1007\"><\/p>\n<p><span style=\"font-weight: 400\">To get started, you first need to login.<\/span><\/p>\n<p><img decoding=\"async\" src=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/screenshot-2018-11-13-at-10-30-14-tt-width-1138-height-68-fill-0-crop-0-bgcolor-eeeeee-except_gif-1.png\" alt=\"\" class=\"aligncenter size-full wp-image-8541\"><\/p>\n<p><span style=\"font-weight: 400\">Now, we will create a new project for <em>mariadb<\/em>.<\/span><\/p>\n<p><img decoding=\"async\" src=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/screenshot-2018-11-13-at-10-31-03-tt-width-1136-height-68-fill-0-crop-0-bgcolor-eeeeee-except_gif-1.png\" alt=\"\" class=\"aligncenter size-full wp-image-8551\"><\/p>\n<p><span style=\"font-weight: 400\">Make this project the active one. <\/span><\/p>\n<p><img decoding=\"async\" src=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/screenshot-2018-11-13-at-10-31-16-tt-width-1140-height-132-fill-0-crop-0-bgcolor-eeeeee-except_gif-1.png\" alt=\"\" class=\"aligncenter size-full wp-image-8561\"><\/p>\n<p><span style=\"font-weight: 400\">The next step is to create the application in this project.<\/span><\/p>\n<p><span style=\"font-weight: 400\">It is possible to set variables during the app creation.<\/span><\/p>\n<p><span style=\"font-weight: 400\">Set the&nbsp;<code>MYSQL_USER<\/code>, the <code>MYSQL_PASSWORD<\/code>&nbsp;and the <code>MYSQL_ROOT_PASSWORD<\/code>&nbsp;to developer. Then set the <code>MYSQL_DATABSE<\/code>&nbsp;to phpDB.<\/span><\/p>\n<p><img decoding=\"async\" src=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/screenshot-2018-11-13-at-10-31-34-tt-width-1134-height-132-fill-0-crop-0-bgcolor-eeeeee-except_gif-1.png\" alt=\"\" class=\"aligncenter size-full wp-image-8571\"><\/p>\n<p><span style=\"font-weight: 400\">The last step is to expose the application so it is accessible to the outside world.<\/span><\/p>\n<p><span style=\"font-weight: 400\">This command will create a route to the mariadb application you created with the previous command. <\/span><\/p>\n<p><span style=\"font-weight: 400\">The developer user has standard only access via the internal network and not public.<\/span><\/p>\n<p><span style=\"font-weight: 400\">You can connect to the pod via <code>ssh<\/code>.<\/span><\/p>\n<p><span style=\"font-weight: 400\">First search for the pod name, and then connect to the pod with the <code>oc rsh<\/code>&nbsp;command.<\/span><\/p>\n<p><img decoding=\"async\" src=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/screenshot-2018-11-13-at-10-31-44-tt-width-1140-height-302-fill-0-crop-0-bgcolor-eeeeee-except_gif-1.png\" alt=\"\" class=\"aligncenter size-full wp-image-8581\"><\/p>\n<p><span style=\"font-weight: 400\">Now we can check the ip of the pod via <code>ifconfig<\/code>&nbsp;(ip command is not available) and connect to mariadb via the <code>mysql<\/code> command.<\/span><\/p>\n<p><img decoding=\"async\" src=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/screenshot-2018-11-13-at-10-32-05-tt-width-1238-height-780-fill-0-crop-0-bgcolor-eeeeee-except_gif-1.png\" alt=\"\" class=\"aligncenter size-full wp-image-8591\"><\/p>\n<p><span style=\"font-weight: 400\">Create a user table and add three rows.<\/span><\/p>\n<p><img decoding=\"async\" src=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/screenshot-2018-11-13-at-10-32-30-tt-width-1270-height-442-fill-0-crop-0-bgcolor-eeeeee-except_gif-1.png\" alt=\"\" class=\"aligncenter size-full wp-image-8601\"><\/p>\n<p><span style=\"font-weight: 400\">This table can now be used by other pods in the same network.<\/span><\/p>\n<p><span style=\"font-weight: 400\">You can, for example, change the php application to use this database.<\/span><\/p>\n<p><span style=\"font-weight: 400\">In playbook-3yml included in this <\/span><a href=\"https:\/\/odyssey.devoteam.be\/publicOKD\/deployOkdAzure\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400\">gitlab repo<\/span><\/a>&nbsp;<span style=\"font-weight: 400\">we used for installing OpenShift OKD, we commented out the role <code>osInstallMariaDb<\/code>. If you uncomment this role, it will install MariaDb.<\/span><\/p>\n<p><span style=\"font-weight: 400\">You can also modify the provided php application. Try to make it work together with the database we created. <\/span><\/p>\n<ul>\n<li><span style=\"font-weight: 400\">Tip 1: check the index2.php file via the terminal screen on your php pod.<\/span><\/li>\n<li><span style=\"font-weight: 400\">Tip 2: <span>If you can not connect to the database, check the ip from the server in the protected\/mysql_connect.php file.<\/span><\/span><\/li>\n<\/ul>\n<p><span style=\"font-weight: 400\">Have fun!<\/span><\/p>\n<p><span style=\"font-weight: 400\">If everything is done correctly you should have the following result on <\/span><a href=\"http:\/\/phpcountdown-php-devoteam\/\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400\">http:\/\/phpcountdown-php-devoteam<\/span><\/a><span style=\"font-weight: 400\">.{{ public IP }}.nip.io\/index2.php<\/span><\/p>\n<p><img decoding=\"async\" src=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/screenshot-2018-11-13-at-10-32-47-tt-width-1328-height-1028-fill-0-crop-0-bgcolor-eeeeee-except_gif-1.png\" alt=\"\" class=\"aligncenter size-full wp-image-8611\"><\/p>\n<p>&nbsp;<\/p>\n<h4><em>This was the final post of our blog series &#8220;<a href=\"https:\/\/belgium.devoteam.com\/blog-post\/ansible-tower-openshift-azure-tower-installation-prerequisites\/\">Using Ansible Tower to deploy OpenShift on Azure: a step-by-step guide<\/a>\u201d.&nbsp;Discover more about OpenShift on Azure <a href=\"https:\/\/belgium.devoteam.com\/openshift-on-azure\/\">here<\/a>.<\/em><\/h4>\n<h4><em>Questions or you want more info about our services? Feel free to contact Hans Neefs via <a href=\"mailto:hans.neefs@devoteam.com\">email<\/a> or +32 2 474 05 00.<\/em><\/h4>\n","protected":false},"excerpt":{"rendered":"<p>OpenShift command-line: automate tasks &amp; install the MariaDb application OpenShift has a great GUI, but if you want to automate tasks on it via Ansible the command-line is the way to move forward. In the fifth episode of our blog series, we will show you how to install MariaDb on OpenShift via this interface. The [&hellip;]<\/p>\n","protected":false},"featured_media":132990,"template":"","categories":[2458],"tags":[],"industry":[],"class_list":["post-516919","expert-view","type-expert-view","status-publish","has-post-thumbnail","hentry","category-cloud-native-architecture-cz"],"acf":[],"cards":"\n\t<div class=\"single-post-card\">\n\n\t\t<figure class=\"wp-block-post-featured-image\"><a href=\"https:\/\/devoteam.info\/cz\/expert-view\/using-ansible-tower-to-deploy-openshift-on-azure-episode-5\/\" target=\"_self\" ><img width=\"2001\" height=\"1126\" src=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/afbeelding-blog-coding.jpg\" class=\"attachment-post-thumbnail size-post-thumbnail wp-post-image\" alt=\"Using Ansible Tower to deploy OpenShift on Azure: episode 5\" style=\"aspect-ratio:4\/3;width:100%;object-fit:cover;\" decoding=\"async\" loading=\"lazy\" srcset=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/afbeelding-blog-coding.jpg 2001w, https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/afbeelding-blog-coding-300x169.jpg 300w, https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/afbeelding-blog-coding-1024x576.jpg 1024w, https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/afbeelding-blog-coding-768x432.jpg 768w, https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/afbeelding-blog-coding-1536x864.jpg 1536w\" sizes=\"auto, (max-width: 2001px) 100vw, 2001px\" \/><\/a><\/figure>\n\n\t\t\n\t\t<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-43282307 wp-block-group-is-layout-flex\">\n\t<p style=\"font-style:normal;font-weight:700\" class=\"has-link-color wp-elements-1 wp-block-lp-post-type has-text-color has-primary-color has-small-font-size\">Expert View<\/p>\n\n\t\t\n\t\t<h3 style=\"font-style:normal;font-weight:400\" class=\"wp-block-post-title has-base-font-size\"><a href=\"https:\/\/devoteam.info\/cz\/expert-view\/using-ansible-tower-to-deploy-openshift-on-azure-episode-5\/\" target=\"_self\" >Using Ansible Tower to deploy OpenShift on Azure: episode 5<\/a><\/h3><\/div>\n\t\t\n\t<\/div>\n\n","yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v28.4 (Yoast SEO v28.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Using Ansible Tower to deploy OpenShift on Azure: episode 5 | Devoteam<\/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:\/\/devoteam.info\/cz\/expert-view\/using-ansible-tower-to-deploy-openshift-on-azure-episode-5\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using Ansible Tower to deploy OpenShift on Azure: episode 5\" \/>\n<meta property=\"og:description\" content=\"OpenShift command-line: automate tasks &amp; install the MariaDb application OpenShift has a great GUI, but if you want to automate tasks on it via Ansible the command-line is the way to move forward. In the fifth episode of our blog series, we will show you how to install MariaDb on OpenShift via this interface. The [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/devoteam.info\/cz\/expert-view\/using-ansible-tower-to-deploy-openshift-on-azure-episode-5\/\" \/>\n<meta property=\"og:site_name\" content=\"Devoteam\" \/>\n<meta property=\"og:image\" content=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/09\/Managed-Shared-Services-e1727198616443.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1280\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/devoteam.info\\\/cz\\\/expert-view\\\/using-ansible-tower-to-deploy-openshift-on-azure-episode-5\\\/\",\"url\":\"https:\\\/\\\/devoteam.info\\\/cz\\\/expert-view\\\/using-ansible-tower-to-deploy-openshift-on-azure-episode-5\\\/\",\"name\":\"Using Ansible Tower to deploy OpenShift on Azure: episode 5 | Devoteam\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/devoteam.info\\\/cz\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/devoteam.info\\\/cz\\\/expert-view\\\/using-ansible-tower-to-deploy-openshift-on-azure-episode-5\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/devoteam.info\\\/cz\\\/expert-view\\\/using-ansible-tower-to-deploy-openshift-on-azure-episode-5\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/devoteam.info\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/afbeelding-blog-coding.jpg\",\"datePublished\":\"2018-12-03T15:41:09+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/devoteam.info\\\/cz\\\/expert-view\\\/using-ansible-tower-to-deploy-openshift-on-azure-episode-5\\\/#breadcrumb\"},\"inLanguage\":\"en-CZ\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/devoteam.info\\\/cz\\\/expert-view\\\/using-ansible-tower-to-deploy-openshift-on-azure-episode-5\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-CZ\",\"@id\":\"https:\\\/\\\/devoteam.info\\\/cz\\\/expert-view\\\/using-ansible-tower-to-deploy-openshift-on-azure-episode-5\\\/#primaryimage\",\"url\":\"https:\\\/\\\/devoteam.info\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/afbeelding-blog-coding.jpg\",\"contentUrl\":\"https:\\\/\\\/devoteam.info\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/afbeelding-blog-coding.jpg\",\"width\":2001,\"height\":1126},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/devoteam.info\\\/cz\\\/expert-view\\\/using-ansible-tower-to-deploy-openshift-on-azure-episode-5\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/devoteam.info\\\/cz\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Expert View\",\"item\":\"https:\\\/\\\/devoteam.info\\\/cz\\\/expert-view\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Using Ansible Tower to deploy OpenShift on Azure: episode 5\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/devoteam.info\\\/cz\\\/#website\",\"url\":\"https:\\\/\\\/devoteam.info\\\/cz\\\/\",\"name\":\"Devoteam\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/devoteam.info\\\/cz\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-CZ\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Using Ansible Tower to deploy OpenShift on Azure: episode 5 | Devoteam","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:\/\/devoteam.info\/cz\/expert-view\/using-ansible-tower-to-deploy-openshift-on-azure-episode-5\/","og_locale":"en_US","og_type":"article","og_title":"Using Ansible Tower to deploy OpenShift on Azure: episode 5","og_description":"OpenShift command-line: automate tasks &amp; install the MariaDb application OpenShift has a great GUI, but if you want to automate tasks on it via Ansible the command-line is the way to move forward. In the fifth episode of our blog series, we will show you how to install MariaDb on OpenShift via this interface. The [&hellip;]","og_url":"https:\/\/devoteam.info\/cz\/expert-view\/using-ansible-tower-to-deploy-openshift-on-azure-episode-5\/","og_site_name":"Devoteam","og_image":[{"width":1920,"height":1280,"url":"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/09\/Managed-Shared-Services-e1727198616443.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/devoteam.info\/cz\/expert-view\/using-ansible-tower-to-deploy-openshift-on-azure-episode-5\/","url":"https:\/\/devoteam.info\/cz\/expert-view\/using-ansible-tower-to-deploy-openshift-on-azure-episode-5\/","name":"Using Ansible Tower to deploy OpenShift on Azure: episode 5 | Devoteam","isPartOf":{"@id":"https:\/\/devoteam.info\/cz\/#website"},"primaryImageOfPage":{"@id":"https:\/\/devoteam.info\/cz\/expert-view\/using-ansible-tower-to-deploy-openshift-on-azure-episode-5\/#primaryimage"},"image":{"@id":"https:\/\/devoteam.info\/cz\/expert-view\/using-ansible-tower-to-deploy-openshift-on-azure-episode-5\/#primaryimage"},"thumbnailUrl":"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/afbeelding-blog-coding.jpg","datePublished":"2018-12-03T15:41:09+00:00","breadcrumb":{"@id":"https:\/\/devoteam.info\/cz\/expert-view\/using-ansible-tower-to-deploy-openshift-on-azure-episode-5\/#breadcrumb"},"inLanguage":"en-CZ","potentialAction":[{"@type":"ReadAction","target":["https:\/\/devoteam.info\/cz\/expert-view\/using-ansible-tower-to-deploy-openshift-on-azure-episode-5\/"]}]},{"@type":"ImageObject","inLanguage":"en-CZ","@id":"https:\/\/devoteam.info\/cz\/expert-view\/using-ansible-tower-to-deploy-openshift-on-azure-episode-5\/#primaryimage","url":"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/afbeelding-blog-coding.jpg","contentUrl":"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/afbeelding-blog-coding.jpg","width":2001,"height":1126},{"@type":"BreadcrumbList","@id":"https:\/\/devoteam.info\/cz\/expert-view\/using-ansible-tower-to-deploy-openshift-on-azure-episode-5\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/devoteam.info\/cz\/"},{"@type":"ListItem","position":2,"name":"Expert View","item":"https:\/\/devoteam.info\/cz\/expert-view\/"},{"@type":"ListItem","position":3,"name":"Using Ansible Tower to deploy OpenShift on Azure: episode 5"}]},{"@type":"WebSite","@id":"https:\/\/devoteam.info\/cz\/#website","url":"https:\/\/devoteam.info\/cz\/","name":"Devoteam","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/devoteam.info\/cz\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-CZ"}]}},"uagb_featured_image_src":{"full":["https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/afbeelding-blog-coding.jpg",2001,1126,false],"thumbnail":["https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/afbeelding-blog-coding-150x150.jpg",150,150,true],"medium":["https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/afbeelding-blog-coding-300x169.jpg",300,169,true],"medium_large":["https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/afbeelding-blog-coding-768x432.jpg",768,432,true],"large":["https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/afbeelding-blog-coding-1024x576.jpg",1024,576,true],"1536x1536":["https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/afbeelding-blog-coding-1536x864.jpg",1536,864,true],"2048x2048":["https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/afbeelding-blog-coding.jpg",2001,1126,false]},"uagb_author_info":{"display_name":"wcraye","author_link":"https:\/\/devoteam.info\/cz\/author\/"},"uagb_comment_info":0,"uagb_excerpt":"OpenShift command-line: automate tasks &amp; install the MariaDb application OpenShift has a great GUI, but if you want to automate tasks on it via Ansible the command-line is the way to move forward. In the fifth episode of our blog series, we will show you how to install MariaDb on OpenShift via this interface. The&hellip;","_links":{"self":[{"href":"https:\/\/devoteam.info\/cz\/wp-json\/wp\/v2\/expert-view\/516919","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/devoteam.info\/cz\/wp-json\/wp\/v2\/expert-view"}],"about":[{"href":"https:\/\/devoteam.info\/cz\/wp-json\/wp\/v2\/types\/expert-view"}],"version-history":[{"count":0,"href":"https:\/\/devoteam.info\/cz\/wp-json\/wp\/v2\/expert-view\/516919\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/devoteam.info\/cz\/wp-json\/wp\/v2\/media\/132990"}],"wp:attachment":[{"href":"https:\/\/devoteam.info\/cz\/wp-json\/wp\/v2\/media?parent=516919"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/devoteam.info\/cz\/wp-json\/wp\/v2\/categories?post=516919"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/devoteam.info\/cz\/wp-json\/wp\/v2\/tags?post=516919"},{"taxonomy":"industry","embeddable":true,"href":"https:\/\/devoteam.info\/cz\/wp-json\/wp\/v2\/industry?post=516919"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}