GithubHelp home page GithubHelp logo

rtortori / rmlab-aci-operator Goto Github PK

View Code? Open in Web Editor NEW
10.0 3.0 0.0 703 KB

An Ansible operator that extends Kubernetes APIs in order to implement Cisco ACI Automation

License: Other

Dockerfile 4.91% Shell 9.66% Makefile 85.43%
aci kubernetes cisco container platform cni openshift epg

rmlab-aci-operator's Introduction

Cisco RMLAB ACI Operator

An Ansible operator that extends Kubernetes APIs in order to implement Cisco ACI Automation

Disclaimer: This is NOT an official Cisco application and comes with absolute NO WARRANTY!
Please check the LICENSE for further information.

Helm chart repository and instructions here.

Supported platforms

  • Kubernetes v1.16+ (Tested with ACI 4.1, 4.2 and 5.0)
  • Openshift Container Platform v4.3+ (Should work but never tested)

Note: The operator uses Volumes. It will NOT start if docker-novolume-plugin is used.
Note: This operator now uses apiextensions.k8s.io/v1beta1 to manage CustomResourceDefinitions.
If you need to run the RMLAB ACI Operator on Kubernetes <1.16 or Openshift 3.x, please use the v1alpha branch. However, keep in mind that not all features are available on that release.

Deployment differences between Kubernetes and Openshift

Topic Kubernetes Openshift
Resource creation Creates a namespace Creates a project
Runs on namespace kube-default aci-containers-system

Changelog for Version 1

  • The operator now supports multiple use cases to accommodate different business needs
  • Controller doesn't have affinity anymore, it will scheduled on any available worker node
  • Operator now complies with Operator Framework v1
  • Finalizers are now supported for resource cleanup
  • Kubectl now shows consumer/provider contracts for the EPG your namespace is attached to. These values are updated by default every 10 seconds
  • Option to detach the operator in case at some point in time you want to go manual
  • Support for non default AP and Bridge Domain
  • Helm installer

Installation

Kubernetes
helm repo add rmlab-aci-operator https://rtortori.github.io/rmlab-aci-operator-helm/ 
helm install aci-op rmlab-aci-operator/latest 

Or you can install manually by cloning this repo and run:

installers/acins-kube-installer.sh 
Openshift
helm repo add rmlab-aci-operator https://rtortori.github.io/rmlab-aci-operator-helm/ 
helm install aci-op rmlab-aci-operator/latest --set global.containerPlatform=openshift 

Or you can install manually by cloning this repo and run:

installers/acins-ocp-installer.sh 

Uninstall the operator

Kubernetes
helm unistall aci-op

Or you can uninstall manually by cloning this repo and run:

installers/acins-kube-uninstaller.sh 
Openshift
helm unistall aci-op

Or you can uninstall manually by cloning this repo and run:

installers/acins-ocp-uninstaller.sh 

Features and Operational Model

Compared to previous versions, from version 1 the RMLAB ACI Kubernetes Operator has been reworked to address three challenges:

  • Be compliant with the v1 Operator SDK framework data structure and features
  • Implement multiple ACI CNI use cases
  • Allow the user to detach the operator in case manual (traditional) control is required at some point in time (e.g. you realize the infrastructure is getting too complex to be managed by the operator)

For further information on SDK framework v1, please click here

The acinamespaces.rmlab.cisco.com CRD implements a resource called AciNamespace under the API rmlab.cisco.com/v1.

While previous versions of this operator only supported a single use case (create an EPG and annotate a namespace), since version 1 the operator supports multiple use cases which can be grouped into two strategies:

  1. Provision an ACI EPG and inherit the contracts from an EPG contract master. Create or update a namespace with ACI annotation (Use cases 1, 3 and 8. Described below)
  2. Attach to an existing EPG. Create or update a namespace with ACI annotation (Use cases 2, 4 and 6. Described below).

When using strategy no.1. ACI Admins are required to pre-provision EPGs with the right contract as per corporate policies.
Once the EPGs have been defined, Kubernetes admins can reference to their names as EPG Contract Masters (created EPGs will inherit contracts from those EPGs).

The following table describes the operator use cases. Each use case is basically a combination of the specs you can configure in the CR.
epgcontractmaster and op_managed are specs of the Custom Resource you create (CR).

Use Case # Use Case Description Existing EPG epgcontractmaster op_managed Notes
1 Create a new EPG from an EPG contract master and fully manage the EPG and Namespace. When the AciNamespace is deleted, the EPG and the Namespace will also be deleted NO explicit True -
2 The EPG will be adopted by the operator, attached to the VMM domain and attached to an EPG contract master. When the AciNamespace is deleted, the EPG and the Namespace will also be deleted YES explicit True WARNING: You might delete an existing EPG when you remove the CR, ensure this is what you want
3 Create a new EPG from an EPG contract master and fully manage the EPG and Namespace. When the AciNamespace is deleted, the operator is detached and EPG and namespaces will go in manual mode NO explicit False -
4 The EPG will be adopted by the operator, a bind to the VMM domain will be added and attached to an EPG contract master. When the AciNamespace is deleted, the operator is detached and EPG and namespaces will go in manual mode YES explicit False -
5 NOT SUPPORTED NO not specified in the CR True There's no point to create a new EPG with no contracts attached, PODs in this namespace will not work. For this use case, the operator will do NOTHING
6 The EPG will be adopted by the operator and attached to the VMM domain. When the AciNamespace is deleted, the EPG and the Namespace will also be deleted YES not specified in the CR True WARNING: You might delete an existing EPG when you remove the CR, ensure this is what you want
7 NOT SUPPORTED NO not specified in the CR False There's no point to create a new EPG with no contracts attached, PODs in this namespace will not work. For this use case, the operator will do NOTHING
8 Create and annotate a Namespace to an existing EPG, adding a VMM binding to it. The operator will still ensure the EPG always exists to be consistent with the Namespace annotation, however, when the AciNamespace is deleted, the operator is detached and both EPG and Namespace will go in manual mode NO not specified in the CR True -

The following is a sample Custom Resource (CR) for an AciNamespace.

apiVersion: rmlab.cisco.com/v1
kind: AciNamespace
metadata:
  name: new-epg-uc1
spec:
  epgcontractmaster: "kube-default"
  openshiftproject: False
  op_managed: True
  

The following table describes the AciNamespaces Custom Resource (CR) specs.

Spec Description Example Optional/Mandatory Default
epgcontractmaster The EPG Master Contract you want to attach your EPG to "kube-default" Optional "N/A"
openshiftproject If True, the CR will create/update an Openshift Project False Optional False
op_managed If False, when you delete the CR the operator will detach to the namespace and EPG, allowing you to manually manage the infrastructure True Mandatory True
applicationprofile The ACI AP "kubernetes" Optional "kubernetes"
bridgedomain The ACI Bridge Domain "kube-pod-bd" Optional "kube-pod-bd"

Usage

The folder config/samples contains CR examples for all use cases.

This is an example for Use Case #1:

apiVersion: rmlab.cisco.com/v1
kind: AciNamespace
metadata:
  name: frontend
spec:
  epgcontractmaster: "kube-default"
  applicationprofile: "kubernetes"
  bridgedomain: "kube-pod-bd"
  openshiftproject: False
  op_managed: True

Where name is the desired name of the EPG and Kubernetes namespace

This will:

  • Create a new AciNamespace resource named frontend
  • Create a new EPG in the kubernetes application profile
  • Bind the frontend EPG to the VMM domain
  • Configure kube-default EPG as the contract master for the frontend EPG
  • Creates or updates a Kubernetes namespace called frontend with the correct opflex annotation

Deployment Example

cat <<EOF | kubectl apply -f -
apiVersion: rmlab.cisco.com/v1
kind: AciNamespace
metadata:
  name: frontend
spec:
  epgcontractmaster: "kube-default"
  applicationprofile: "kubernetes"
  bridgedomain: "kube-pod-bd"
  openshiftproject: False
  op_managed: True
EOF
	
acinamespace.rmlab.cisco.com/frontend created
$ kubectl get acinamespace
NAME       EPG-CONTRACT-MASTER   ACI-BD          MANAGED
frontend   kube-default           kube-pod-bd    true

You can fetch more details, like the list of provider and consumer contracts your EPG is using with the "-o wide" option

$ k get acinamespace -o wide
NAME       EPG-CONTRACT-MASTER   ACI-BD          M-EPG-C-CONTRACTS                                                                    M-EPG-P-CONTRACTS                       C-CONTRACTS   P-CONTRACTS   MANAGED
frontend   kube-default           kube-pod-bd     [['uni/tn-pvt20/brc-dns', 'uni/tn-pvt20/brc-kube-api', 'uni/tn-pvt20/brc-icmp']]     [['uni/tn-pvt20/brc-health-check']]     []            []           true

or using kubectl describe acinamespace

$ kubectl describe aci frontend
Name:         frontend
Namespace:    default
Labels:       <none>
Annotations:  kubectl.kubernetes.io/last-applied-configuration:
                {"apiVersion":"rmlab.cisco.com/v1","kind":"AciNamespace","metadata":{"annotations":{},"name":"frontend","namespace":"default"},"spec":{"ap...
API Version:  rmlab.cisco.com/v1
Kind:         AciNamespace
Metadata:
  Creation Timestamp:  2020-10-17T22:01:09Z
  Finalizers:
    finalizer.aci.rmlab.cisco.com
  Generation:        1
  Resource Version:  1317176
  Self Link:         /apis/rmlab.cisco.com/v1/namespaces/default/acinamespaces/frontend
  UID:               ab7adda3-1313-4266-82d6-d9843ec15831
Spec:
  Applicationprofile:  kubernetes
  Bridgedomain:        kube-pod-bd
  Epgcontractmaster:   kube-default
  op_managed:          true
  Openshiftproject:    false
Status:
  bridge_domain:             kube-pod-bd
  consumer_contracts:        []
  mepg_consumer_contracts:   [['uni/tn-pvt20/brc-dns', 'uni/tn-pvt20/brc-kube-api', 'uni/tn-pvt20/brc-icmp']]
  mepg_dn:                   ['uni/tn-pvt20/ap-kubernetes/epg-kube-default']
  mepg_provider_contracts:   [['uni/tn-pvt20/brc-health-check']]
  provider_contracts:        []
Events:                     <none>

This is how the EPG looks in APIC

alt text

You can switch mode (Operator managed to unmanaged and viceversa) patching a specific AciNamespace at any time

kubectl patch aci youracinamespace -p '{"spec":{"op_managed":false}}' --type=merge

Once you delete the CR, if you wish to retake control, you need to recreate the CR.

Customization

The operator respects the data structure of the Operator Framework SDK v1.
Please have a look here for the Ansible operator quick start.

To modify the AciNamespace CustomResourceDefinition, edit the file config/bases/rmlab.cisco.com_acinamespaces.yaml

To modify the controller for Kubernetes (e.g. use your own image), edit the file config/manager-k8s For Openshift, edit the file config/manager-openshift

You don't need to modify anything in the manifests directory, the manifest files will be created automatically when you build.

The playbooks directory contains the main playbook and the finalizer. The playbooks contain descriptions for each task to describe the controller logic.

Modify the requirements.yaml file to add more collections to the Ansible controller, in case you want to extend the operator and need additional modules.

The watches.yaml file specifies the Kubernetes APIs the controller needs to watch, the playbook it should run, the finalizer that should use when AciNamespaces are terminated. You can customize the reconcilePeriod if you feel 10 seconds is too aggressive.

Build

Kubernetes (modify the IMG variable with your controller image)

make k8s-installer && make k8s-uninstaller && make docker-build docker-push IMG=your/image:tag

Openshift (modify the IMG variable with your controller image)

make ocp-installer && make ocp-uninstaller && make docker-build docker-push IMG=IMG=your/image:tag

rmlab-aci-operator's People

Contributors

rtortori avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

rmlab-aci-operator's Issues

Can we really run the "molecule test -s local" here?

Hi I'm trying this out and now I already have the operator up and running in my k8s cluster np. Then I started to look into those molecule test cases. I'm still learning molecule but I noticed that the "templates" folder is missing in this repo but looks like we are still referring to it in these 2 files,
https://github.com/rtortori/rmlab-aci-operator/blob/master/molecule/test-local/prepare.yml
https://github.com/rtortori/rmlab-aci-operator/blob/master/molecule/test-local/playbook.yml

I tried to verify it myself but unfortunately my VM can only install the latest molecule (3.0.2.1) which bailed out right away when I tried to execute this command,
noiro@k8s27-node-5:~/rmlab-aci-operator$ sudo molecule test -s local
ERROR: 'molecule/local/molecule.yml' glob failed. Exiting.

But my real question is can the test-local be run successfully without the missing templates folder? Or maybe I just miss something completely here?

Thx.

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.