As the Kubernetes ecosystem evolves so have the APIs provided which has lead to deprecations and removals. If you have moved to Kubernetes 1.22 or OpenShift 4.9 you might have already felt some of that pain.

For those of whom have not upgraded or are thinking of upgrading in the coming months, Pluto which is an open-source project, that is not sponsored by Red Hat nor is it supported under a Red Hat subscription, is here to help:

Pluto is a utility to help users find deprecated Kubernetes apiVersions in their code repositories and their helm releases.

In simple terms; it is a command-line tool that scans the Group Version Kind (GVK) of resources and validates against a version file, such as the below:

deprecated-versions:
- version: extensions/v1beta1
kind: Deployment
deprecated-in: v1.9.0
removed-in: v1.16.0
replacement-api: apps/v1
component: k8s
target-versions:
k8s: v1.22.0

OK, but why do I need pluto?

If you've been using k8s/OCP for a while, it should be easy to imagine the following:

You have multiple teams with multiple applications on the platform. Some of those applications use an auxiliary service, such as MongoDB, which is provided by another team or external partner via a helm chart. A spiders web of YAML dependencies has inadvertently been created. Do you know what apiVersion the Deployment of MongoDB uses?

Of course not, your concern should be the business value created by your application. But that MongoDB service is within the remit of your team to run which means it is down to your team to fix and mitigate any issues.

This is where pluto helps. Once it is integrated into your CI/CD pipeline, you can scan your resources against the latest k8s version via:

helm template {chart dir} | pluto detect -

Or, by specifying a target version for the component, if you want to pin against a specific version or look-ahead:

$ helm template charts/v1 | pluto detect --target-versions k8s=v1.20.0 -

Cool, so how do I check my OCP resources?

As Pluto uses a simple version.yaml to determine what resource should be triggered against, it is possible to write a versions file, like the below, which would work for DeploymentConfigs. The strength of Pluto is that it is not tied to any single stack or component, if your YAML file contains a GVK, you can use Pluto against it.

deprecated-versions:
- version: v1
kind: DeploymentConfig
deprecated-in: v3.11.0
removed-in: v4.9.0
replacement-api: apps.openshift.io/v1
component: ocp
target-versions:
ocp: v4.9.0
$ helm template charts/v1 | pluto detect --additional-versions ocp-versions.yaml -

So how do I include this in my workflow?

As it's a binary, you just need an extra stage/step that executes the binary. If you are using Jenkins:

stage("Run pluto against chart") {
sh "helm template chart/ | pluto detect -"
}

If you are using GitHub workflows:

- name: Download Pluto
uses: FairwindsOps/pluto/github-action@master

- name: Run pluto against chart
run: |
helm template chart/ | pluto detect -

What is next?

The next step for me is to contribute a tekton task when I have some downtime.

I am interested in exploring the possibility of programmatically creating a versions.yaml file based on the APIServer output. If anyone has any suggestions, I am all ears.


저자 소개

Gareth Healy has extensive experience developing enterprise applications on both desktop and web systems, working in a variety of market sectors such as ecommerce, procurement, utilities, banking and finance. Healy is currently specialising in middleware integrations based on Red Hat Fuse running on a container platform based on Red Hat OpenShift Container Platform.

UI_Icon-Red_Hat-Close-A-Black-RGB

채널별 검색

automation icon

오토메이션

기술, 팀, 인프라를 위한 IT 자동화 최신 동향

AI icon

인공지능

고객이 어디서나 AI 워크로드를 실행할 수 있도록 지원하는 플랫폼 업데이트

open hybrid cloud icon

오픈 하이브리드 클라우드

하이브리드 클라우드로 더욱 유연한 미래를 구축하는 방법을 알아보세요

security icon

보안

환경과 기술 전반에 걸쳐 리스크를 감소하는 방법에 대한 최신 정보

edge icon

엣지 컴퓨팅

엣지에서의 운영을 단순화하는 플랫폼 업데이트

Infrastructure icon

인프라

세계적으로 인정받은 기업용 Linux 플랫폼에 대한 최신 정보

application development icon

애플리케이션

복잡한 애플리케이션에 대한 솔루션 더 보기

Virtualization icon

가상화

온프레미스와 클라우드 환경에서 워크로드를 유연하게 운영하기 위한 엔터프라이즈 가상화의 미래