{"id":8347,"date":"2019-01-19T06:31:56","date_gmt":"2019-01-19T06:31:56","guid":{"rendered":"https:\/\/www.appservgrid.com\/paw92\/?p=8347"},"modified":"2019-03-09T01:16:58","modified_gmt":"2019-03-09T01:16:58","slug":"linux-today-red-hat-advances-container-technology-with-podman-1-0","status":"publish","type":"post","link":"https:\/\/www.appservgrid.com\/paw92\/index.php\/2019\/01\/19\/linux-today-red-hat-advances-container-technology-with-podman-1-0\/","title":{"rendered":"Linux Today &#8211; Red Hat Advances Container Technology With Podman 1.0"},"content":{"rendered":"<p>Red Hat&#8217;s competitive Docker container effort hits a major milestone with the release of Podman 1.0, which looks to provide improved performance and security for containers.<\/p>\n<div class=\"article-image visible-sm-block visible-md-block visible-xs-block visible-lg-block\"><img decoding=\"async\" class=\"responsive\" src=\"https:\/\/www.eweek.com\/imagesvr_ez\/b2bezp\/2019\/01\/podman-1088x725.png?alias=article_hero\" alt=\"Podman\" \/><\/div>\n<div class=\"body\">\n<p>Red Hat announced the 1.0 release of its open-source\u00a0Podman project on Jan. 17, which provides a fully featured container engine.<\/p>\n<p>In Podman 1.0, Red Hat has integrated multiple core security capabilities in an effort to enable organizations run containers securely. Among the security features are rootless containers and enhanced user namespace support for better container isolation.<\/p>\n<p>Containers provide a way for organizations to run applications in a virtualized approach on top of an existing operating system. With the 1.0 release, Red Hat is now also positioning Podman as an alternative to the Docker Engine technology for application container deployment.<\/p>\n<p>&#8220;We felt the sum total of its features, as well as the project&#8217;s performance, security and stability, made it reasonable to move to 1.0,&#8221;\u00a0Scott McCarty, product manager of containers at Red Hat, told\u00a0<em>eWEEK<\/em>. &#8220;Since Podman is set to be the default container engine for the single-node use case in Red Hat Enterprise Linux 8, we wanted to make some pledges about its supportability.&#8221;<\/p>\n<p>McCarty explained that for clusters of container nodes, the CRI-O technology within the Red Hat OpenShift Container Platform will be the default. The OpenShift Container Platform is Red Hat&#8217;s distribution of the Kubernetes container orchestration platform.<\/p>\n<p>Red Hat already integrated a pre-1.0 version of Podman in its commercially supported Red Hat Enterprise Linux (RHEL)\u00a0<a href=\"https:\/\/www.eweek.com\/enterprise-apps\/red-hat-enterprise-linux-7.6-launches-with-improved-security\" target=\"_self\">7.6 release<\/a>\u00a0in October 2018. McCarty said that both RHEL 7 and RHEL 8 will be updated to include Podman 1.0. RHEL 8 is currently in private beta.<\/p>\n<p><a id=\"eztoc13446477_0_1\"><\/a><strong>OpenShift<\/strong><\/p>\n<p>CRI-O is a Kubernetes container runtime and is at the core of Red Hat&#8217;s OpenShift. CRI-O reached its\u00a0<a href=\"https:\/\/www.serverwatch.com\/server-news\/red-hat-releases-cri-o-1.0-for-kubernetes-container-runtime.html\" target=\"_self\">1.0 milestone<\/a>\u00a0in October 2017. McCarty said Podman was originally designed to be used on OpenShift Nodes to help manage containers\/storage under CRI-O, but it has grown into so much more.<\/p>\n<p>&#8220;First and foremost, Podman is designed to be used by humans\u2014it&#8217;s easy to use and has a very intuitive command-line experience,&#8221; McCarty said.<\/p>\n<p>A user interacts with Podman at the node level\u2014this includes finding, running, building and sharing containers on a single node. Even in clusters of thousands of container hosts, McCarty said it&#8217;s useful to have a feature rich tool like Podman available to troubleshoot and to tinker with individual nodes.<\/p>\n<p>&#8220;One main challenge to adopting Kubernetes is the learning curve on the Kubernetes YAML, which defines running containers,&#8221; McCarty said.<\/p>\n<p>Kubernetes\u00a0<a href=\"https:\/\/yaml.org\/\" target=\"_self\">YAML<\/a>\u00a0provides configuration information to get containers running.\u00a0To help onramp users to Red Hat OpenShift, McCarty said Podman has the \u201cpodman generate kube\u201d command. With that feature, a Podman user can interactively create a pod on the host, which Podman can then create and export as Kubernetes-compatible YAML.<\/p>\n<p>&#8220;This YAML can then be used by OpenShift to create the same pod or container inside of Kubernetes, in any cluster or even multiple times within the same cluster, stamping out many copies anywhere the application is needed,&#8221; McCarty explained. &#8220;The user doesn\u2019t even have to know how to write Kubernetes YAML, which is a big help for people new to the container orchestration engine.&#8221;<\/p>\n<p><strong>Security<\/strong><\/p>\n<p>One of the key attributes of Podman is the improved security. A challenge with some container deployments is that they are deployed with root access privileges, which can lead to risk.<\/p>\n<p>On Jan. 14, security vendor CyberArk\u00a0<a href=\"https:\/\/www.eweek.com\/security\/researchers-reveal-play-with-docker-security-vulnerability\" target=\"_self\">reported<\/a>\u00a0one such privileged container risk on the Play-with-Docker community site that could have potentially enabled an attacker to gain access to the underlying host. With containers, the basic idea is that the running containers are supposed to be isolated, but if a user has root privileges, that isolation\u00a0can potentially be bypassed.<\/p>\n<p>Podman has the concept of rootless containers that do not require elevated privileges to run. McCarty said that to use rootless containers, the user doesn\u2019t need to do anything special.<\/p>\n<p>Another key concept with Podman is that it does not require a new system daemon to run. Dan Walsh, consulting software engineer at Red Hat, explained that if a user is going to run a single service as a container, then having to set up another service to just run the container is a big overhead.<\/p>\n<p>&#8220;Forcing all of your containers to run through a single daemon forces you to have a least common denominator for default security for your containers,&#8221; Walsh told\u00a0<em>eWEEK<\/em>. &#8220;By separating out the containers engines into separate tools like CRI-O, Buildah and Podman, we can give the proper level of security for each engine.&#8221;<\/p>\n<p>Walsh added that Podman also enables users to\u00a0run each container in a separate user namespace, providing further isolation. From a security auditing perspective, he noted that the \u201cPodman top\u201d command can be used to actually reveal security information about content running within the container.<\/p>\n<p><strong>Podman Usage<\/strong><\/p>\n<p>Red Hat is seeing a lot of usage for Podman as a replacement for the Docker Engine for running containers in services on hosts, according to McCarty.<\/p>\n<p>The Fedora and openSUSE communities seem to be taking the lead on adopting Podman, McCarty said, but Red Hat also seen it packaged and used in many other distributions, including Ubuntu, Debian, Arch and Gentoo, to name a few.<\/p>\n<p>&#8220;Podman essentially operates at native Linux speeds, since there is no daemon getting in the way of handling client\/server requests,&#8221; he said.<\/p>\n<\/div>\n<p>Related Stories:<\/p>\n<ul>\n<li><a href=\"https:\/\/www.linuxtoday.com\/high_performance\/red-hat-advances-container-technology-with-podman-1.0.html\">Red Hat Advances Container Technology With Podman 1.0<\/a>(Jan 18, 2019)<\/li>\n<li><a href=\"https:\/\/www.linuxtoday.com\/developer\/red-hat-looks-beyond-docker-for-container-technology.html\">Red Hat Looks Beyond Docker for Container Technology<\/a>(Jul 16, 2018)<\/li>\n<li><a href=\"https:\/\/www.linuxtoday.com\/high_performance\/red-hat-enterprise-linux-8-hits-beta-with-improved-system-performance.html\">Red Hat Enterprise Linux 8 Hits Beta With Improved System Performance<\/a>(Nov 19, 2018)<\/li>\n<li><a href=\"https:\/\/www.linuxtoday.com\/developer\/podman-and-user-namespaces-a-marriage-made-in-heaven-181213050510.html\">Podman and user namespaces: A marriage made in heaven<\/a>(Dec 14, 2018)<\/li>\n<li><a href=\"https:\/\/www.linuxtoday.com\/infrastructure\/podman-a-more-secure-way-to-run-containers-181030062510.html\">Podman: A more secure way to run containers<\/a>(Nov 01, 2018)<\/li>\n<\/ul>\n<p><a href=\"http:\/\/www.linuxtoday.com\/high_performance\/red-hat-advances-container-technology-with-podman-1.0.html\" target=\"_blank\" rel=\"noopener\">Source<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Red Hat&#8217;s competitive Docker container effort hits a major milestone with the release of Podman 1.0, which looks to provide improved performance and security for containers. Red Hat announced the 1.0 release of its open-source\u00a0Podman project on Jan. 17, which provides a fully featured container engine. In Podman 1.0, Red Hat has integrated multiple core &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/www.appservgrid.com\/paw92\/index.php\/2019\/01\/19\/linux-today-red-hat-advances-container-technology-with-podman-1-0\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Linux Today &#8211; Red Hat Advances Container Technology With Podman 1.0&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-8347","post","type-post","status-publish","format-standard","hentry","category-linux"],"_links":{"self":[{"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/posts\/8347","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/comments?post=8347"}],"version-history":[{"count":2,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/posts\/8347\/revisions"}],"predecessor-version":[{"id":10832,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/posts\/8347\/revisions\/10832"}],"wp:attachment":[{"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/media?parent=8347"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/categories?post=8347"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/tags?post=8347"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}