Skip to content

Instantly share code, notes, and snippets.

@haarchri
Created September 11, 2024 17:30
Show Gist options
  • Save haarchri/9e5bc58ec71717b29eb448a2f4b2c18f to your computer and use it in GitHub Desktop.
Save haarchri/9e5bc58ec71717b29eb448a2f4b2c18f to your computer and use it in GitHub Desktop.
this shows kcl, go-template and p&t

function-kcl

inline

  pipeline:
  - functionRef:
      name: crossplane-contrib-function-kcl
    input:
      apiVersion: template.fn.crossplane.io/v1beta1
      kind: KCLInput
      spec:
        source: |
            bucket = {
            apiVersion = "s3.aws.upbound.io/v1beta1"
            kind = "Bucket"
            metadata.annotations = {
                "krm.kcl.dev/composition-resource-name" = "bucket"
            }

            items = [
              bucket
            ]
    step: crossplane-contrib-function-kcl

filesystem

  • specify one file
  pipeline:
  - functionRef:
      name: crossplane-contrib-function-kcl
    input:
      apiVersion: template.fn.crossplane.io/v1beta1
      kind: KCLInput
      spec:
        source: ./main.kcl
    step: crossplane-contrib-function-kcl

function-go-templating

inline

  pipeline:
  - functionRef:
      name: crossplane-contrib-function-go-templating
    input:
      apiVersion: gotemplating.fn.crossplane.io/v1beta1
      kind: GoTemplate
      source: Inline
      inline:
        template: |
          ---
          apiVersion: s3.aws.upbound.io/v1beta1
          kind: Bucket
          metadata:
            annotations:
              gotemplating.fn.crossplane.io/composition-resource-name: bucket
    step: crossplane-contrib-function-go-templating

filesystem

  • specify one folder
  pipeline:
  - functionRef:
      name: crossplane-contrib-function-go-templating
    input:
      apiVersion: gotemplating.fn.crossplane.io/v1beta1
      kind: GoTemplate
      source: FileSystem
      fileSystem:
        dirPath: /templates
    step: crossplane-contrib-function-go-templating

function-patch-and-transform

inline:

  pipeline:
  - functionRef:
      name: crossplane-contrib-function-patch-and-transform
    input:
      apiVersion: pt.fn.crossplane.io/v1beta1
      kind: Resources
      resources:
      - name: bucket
        base:
          apiVersion: s3.aws.upbound.io/v1beta1
          kind: Bucket
    step: crossplane-contrib-function-patch-and-transform
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment