Giter Site home page Giter Site logo

garethahealy / pluto-blog Goto Github PK

View Code? Open in Web Editor NEW
1.0 2.0 0.0 8 KB

[Archived] Blog post on how to use Pluto

Home Page: https://cloud.redhat.com/blog/detecting-deprecated-apis-with-pluto-in-your-ci/cd-workflows

License: Apache License 2.0

Makefile 100.00%

pluto-blog's Introduction

License Generate README.html

Detecting deprecated APIs with Pluto in your CI/CD workflows

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.

pluto-blog's People

Contributors

garethahealy avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.