Coder Social home page Coder Social logo

conversion-webhook-test-with-flux's Introduction

conversion-webhook-test-with-flux

This is the repo to reproduce the error that is posted in

directory structure

.
├── README.md: README
├── flux: controllerd by flux
├── myoperator: kubebuilder sample
└── myoperator.yaml: the generated yaml

How to reproduce

Start minikube

minikube start 

Deploy myoperator

myoperator is a simple operator that

  • uses the conversion webhook that converts v1alpha1 to v1alpha2
  • updates the status of TestResource

There are two ways to deploy myoperator

  • With Tilt
  • Wighout Tilt

Tilt would be useful to debug quickly.

With Tilt

cd myoperator
tilt up

Without Tilt

First, deploy cert-manager:

kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.9.1/cert-manager.yaml

Then, deploy the operator:

kubectl apply -f myoperator.yaml

./myoperator.yaml is generated with the following command:

cd myoperator
kustomize build config/default > ../myoperator.yaml

(The image is replaced with ghcr.io/littlewat/conversion-webhook-test-with-flux/test-resource-controller:aea67ff-amd64 For m1 mac user, please use ghcr.io/littlewat/conversion-webhook-test-with-flux/test-resource-controller:aea67ff-arm64)

Start flux

Export your GitHub personal access token and username:

export GITHUB_USER=<YOUR_GITHUB_USER>
export GITHUB_TOKEN=<YOUR_GITHUB_TOKEN>

Create the secret:

kubectl create ns flux-system
   
flux create secret git flux-system -u $GITHUB_USER -p $GITHUB_TOKEN --url https://github.com/LittleWat/conversion-webhook-test-with-flux.git

Deploy the flux-system (you need to run twice):

kubectl apply -k ./flux/flux-system

Wait until the resource is deployed by flux

Please wait a minute. The resources in ~/flux/flux-resources will be deployed.

$ kubectl  get testresource -A

NAMESPACE         NAME                           AGE
v1alpha1-flux     testresource-v1alpha1-flux     1m
v1alpha2-flux     testresource-v1alpha2-flux     1m

Check the dry-run result

Please repeat the following dry-run command. Sometimes the dry-run command gets the following error message:

$ kubectl apply --server-side --dry-run=server -f ./flux/flux-resources/cwtest_v1alpha1_testresource.yaml --field-manager kustomize-controller

namespace/v1alpha1-flux serverside-applied (server dry run)
Error from server: failed to prune fields: failed add back owned items: failed to convert pruned object at version cwtest.littlewat.github.io/v1alpha1: conversion webhook for cwtest.littlewat.github.io/v1alpha2, Kind=TestResource returned invalid metadata: invalid metadata of type <nil> in input object

Check the managed field:

$ kubectl get testresource -n v1alpha1-flux testresource-v1alpha1-flux -o yaml --show-managed-fields

apiVersion: cwtest.littlewat.github.io/v1alpha2
kind: TestResource
metadata:
  creationTimestamp: "2022-10-07T04:19:26Z"
  generation: 1
  labels:
    kustomize.toolkit.fluxcd.io/name: flux-system
    kustomize.toolkit.fluxcd.io/namespace: flux-system
  managedFields:
  - apiVersion: cwtest.littlewat.github.io/v1alpha1
    fieldsType: FieldsV1
    fieldsV1:
      f:metadata:
        f:labels:
          f:kustomize.toolkit.fluxcd.io/name: {}
          f:kustomize.toolkit.fluxcd.io/namespace: {}
      f:spec:
        f:foo: {}
    manager: kustomize-controller
    operation: Apply
    time: "2022-10-07T04:19:26Z"
  - apiVersion: cwtest.littlewat.github.io/v1alpha2
    fieldsType: FieldsV1
    fieldsV1:
      f:status:
        f:state: {}
    manager: manager
    operation: Update
    subresource: status
    time: "2022-10-07T04:19:26Z"
  name: testresource-v1alpha1-flux
  namespace: v1alpha1-flux
  resourceVersion: "46369"
  uid: a1ea970f-6dd9-4ae1-8995-af48d6bd4d33
spec:
  bar: v1alpha1FooBar
  foo: v1alpha1Foo
status:
  state: v1alpha1Foo-OK

The sample resources to deploy by hand is in myoperator/config/samples

Deploy the v1a1 resource:

kubectl apply --server-side -f ./myoperator/config/samples/cwtest_v1alpha1_testresource.yaml

Repeating the dry-run command never get failed:

kubectl apply --server-side --dry-run=server -f ./myoperator/config/samples/cwtest_v1alpha1_testresource.yaml

From this, it can be said that there is a difference between the deployment in flux and kubectl apply --server-side.

I am glad if this repo is useful for debugging. Thank you!

conversion-webhook-test-with-flux's People

Contributors

littlewat 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.