rancher-charts/packages
Nick Gerace c320d24d50 Fix logging 3.10.0 and remove bad chart 2021-06-09 12:48:00 -04:00
..
fleet Remove rcVersions 2021-05-17 15:39:11 -07:00
fleet-agent Remove rcVersions 2021-05-17 15:39:11 -07:00
fleet-crd Remove rcVersions 2021-05-17 15:39:11 -07:00
longhorn Remove rcVersions 2021-05-17 15:39:11 -07:00
rancher-aks-operator Bump aks-operator chart to 1.0.1-rc7 2021-06-03 11:57:37 -07:00
rancher-aks-operator-crd Bump aks-operator chart to 1.0.1-rc7 2021-06-03 11:57:37 -07:00
rancher-alerting-drivers Fix alerting-drivers Chart.yaml 2021-05-17 15:39:28 -07:00
rancher-backup cut rancher-backup and rancher-backup-crd v1.1.1 2021-05-24 15:02:43 -07:00
rancher-backup-crd cut rancher-backup and rancher-backup-crd v1.1.1 2021-05-24 15:02:43 -07:00
rancher-cis-benchmark Update CIS tag to include k8s version upgrade fix 2021-05-24 17:25:37 -07:00
rancher-eks-operator Bump eks-operator chart to 1.1.1-rc2 2021-06-02 15:28:04 -07:00
rancher-eks-operator-crd Bump eks-operator chart to 1.1.1-rc2 2021-06-02 15:28:04 -07:00
rancher-external-ip-webhook Remove rcVersions 2021-05-17 15:39:11 -07:00
rancher-gatekeeper Remove rcVersions 2021-05-17 15:39:11 -07:00
rancher-gke-operator Bump gke-operator chart to 1.1.1-rc2 2021-06-03 15:03:02 -07:00
rancher-gke-operator-crd Bump gke-operator chart to 1.1.1-rc2 2021-06-03 15:03:02 -07:00
rancher-grafana Add validation on trying to deploy Grafana PVC 2021-05-24 11:35:04 -07:00
rancher-istio-1.8 Fix istio requirement.yaml 2021-05-17 15:39:40 -07:00
rancher-istio-1.9 Fix istio requirement.yaml 2021-05-17 15:39:40 -07:00
rancher-kiali-server Remove rcVersions 2021-05-17 15:39:11 -07:00
rancher-kube-state-metrics Remove rcVersions 2021-05-17 15:39:11 -07:00
rancher-logging Fix logging 3.10.0 and remove bad chart 2021-06-09 12:48:00 -04:00
rancher-monitoring Add kubelet and nodeExporter pushprox and bump image (#1245) 2021-06-04 15:33:21 -07:00
rancher-node-exporter Remove rcVersions 2021-05-17 15:39:11 -07:00
rancher-operator Remove rcVersions 2021-05-17 15:39:11 -07:00
rancher-operator-crd Remove rcVersions 2021-05-17 15:39:11 -07:00
rancher-prom2teams Remove rcVersions 2021-05-17 15:39:11 -07:00
rancher-prometheus-adapter Remove rcVersions 2021-05-17 15:39:11 -07:00
rancher-pushprox Add kubelet and nodeExporter pushprox and bump image (#1245) 2021-06-04 15:33:21 -07:00
rancher-sachet Remove rcVersions 2021-05-17 15:39:11 -07:00
rancher-tracing Remove rcVersions 2021-05-17 15:39:11 -07:00
rancher-vsphere-cpi Remove rcVersions 2021-05-17 15:39:11 -07:00
rancher-vsphere-csi Remove rcVersions 2021-05-17 15:39:11 -07:00
rancher-webhook Remove rcVersions 2021-05-17 15:39:11 -07:00
rancher-windows-exporter Remove rcVersions 2021-05-17 15:39:11 -07:00
rancher-wins-upgrader Remove rcVersions 2021-05-17 15:39:11 -07:00
rio Remove rcVersions 2021-05-17 15:39:11 -07:00
system-upgrade-controller Fix invalid tag in system-upgrade-controller 2021-05-28 18:48:05 -07:00
README.md Regenerate template based on v0.2.0 release 2021-05-17 15:28:30 -07:00

README.md

Packages

What is a Package?

A Package represents a grouping of one or more Helm Charts. It is declared within packages/<package>/package.yaml with the following spec:

packageVersion: 0
workingDir: # The directory within your package that will contain your working copy of the chart (e.g. charts)
url: # A URL pointing to an UpstreamConfiguration
subdirectory: # Optional field for a specific subdirectory for all upstreams
commit: # Optional field for a specific commit if your URL point to a Github Repository
additionalCharts:
# These contain other charts that you would like to package alongside this chart
- workingDir: # same as above
  upstreamOptions:
    # Mutually exclusive with crdOptions
    url: # same as above
    subdirectory: # optional, same as above
    commit: # optional, same as above
  crdOptions:
    # Mutually exclusive with upstreamOptions
    templateDirectory: # A directory within packages/<package>/template that will contain a template for your CRD chart
    crdDirectory: # Where to place your CRDs within a CRD chart (e.g. crds for default charts)
    addCRDValidationToMainChart: # Whether to add additional validation to your main chart to check that the CRD chart is installed.

As seen in the spec above, every Package must have exactly one Chart designated as a main Chart (multiple main Charts are not supported at this time) and all other Charts will be considered AdditionalCharts.

UpstreamOptions

Charts or AdditionalCharts can provide UpstreamOptions with the following possible configurations:

  • Chart Archive: provide the url and optionally subdirectory
  • Github Repository: provide the url (e.g. https://github.com/rancher/charts-build-scripts.git) and optionally a subdirectory and a commit
  • Package: provide a url: packages/<package> and the main Chart from that package can be pulled. You should ensure that a loop is not introduced.
  • Local: provide url: local and the package will assume the contents of workingDir are exactly the chart you want to use.

[AdditionalCharts] CRDOptions

AdditionalCharts can provide CRDOptions instead of UpstreamOptions. These CRDOptions allow the scripts to automatically construct a CRD chart from your main Chart's contents based on the template provided.

A CRD Chart is a Helm Chart whose sole purpose is to install CRDs onto a cluster before the main Chart is installed.

You should not need a CRD chart if your main chart has the following qualities:

  1. Your main chart does not install any CRDs.
  2. Even if your main chart installs CRDs, it never installs resources of that kind as part of the release. In this case, CRDs can just remain in your templates/ directory to be managed by Helm.
  3. Neither option from above applies to you, but you do not need to facilitate automatically upgrading CRDs or providing a way for a user to cleanly delete CRDs via a second Helm release. In this case, the current Helm feature of having your CRDs placed in the crds/ directory should work for you.

Directory Structure

packages/
  <package>/
    package.yaml # A file that represents your package's overall configuration
    generated-changes/
      additional-charts/
        # Contains one directory per additional chart, keeping track of its dependencies and patches
        <additionalChart>/
          generated-changes/
            # Same as above, but no more additionalCharts
      dependencies/
        # Contains one directory per dependency.
        <dependency>
          dependency.yaml # The UpstreamConfiguration of a particular dependency
      exclude/
        # Files that were excluded from upstream verbatim. Follows the same directory structure as the chart
      overlay/
        # Files that were overlaid onto upstream verbatim. Follows the same directory structure as the chart
      patch/
        # Files that were patches from upstream. Follows the same directory structure as the chart and contains Unified Unix Diffs
    templates/ 
      # Contains any templates. Currently only used by CRDOptions

Developer Workflow

Developers will use the following commands to work with packages:

  • make prepare: Pulls in your charts from upstream and creates a basic generated-changes/ directory with your dependencies from upstream

  • make patch: Updates your generated-changes/ to reflect the difference between upstream and the current working directory of your branch. Requires prepare

  • make charts: Runs prepare and then exports your charts to assets/ and charts/ and generates or updates your index.yaml. This is expected to be run before submitting a PR. Once this has been run and pushed to a branch, a Rancher Helm Repository that points to a branch that has these directories with the index.yaml should be able to find and deploy working copies of your chart.

  • make clean: Cleans up all the working directories of charts to get your repository ready for a PR

To update your working copy of the charts-build-scripts after rebasing against upstream, run:

  • make pull-scripts: Pulls in the version of the charts-build-scripts indicated in scripts

To check whether the new packages you are introducing will cause any issues with upstream that contains already released charts, run:

  • make validate: Validates your current repository branch against all the repository branches indicated in your configuration.yaml

Common Workflow

  • Make or update the packages/<package>/package.yaml to point to your upstream and set any other chart options
  • Run PACKAGE=<package> make prepare to pull in your upstream repositories
    • Note: On a prepare, the charts-build-scripts will automatically replace your charts existing dependencies with dependencies that will show up in generated-changes/dependencies/<dependency>/dependency.yaml. Since the spec of this file follows the UpstreamConfiguration described above, you can modify this to point your dependencies to a local chart (rooted at generated-changes/dependencies/<dependency>/), another package, a Chart archive (e.g. point it to a newer version of the dependency), or a Github Repository (at a subdirectory / commit).
    • Note: As part of replacing your dependencies, the Chart.yaml and requirements.yaml are considered "Managed Files". These files are prone to having conflicts and may need to be deleted / recreated on a prepare if there are conflicts. Please open up an issue if you encounter frequent bugs with these files so that we can take a look.
  • Make changes to the relevant working directories
  • Run PACKAGE=<package> make patch to save your changes
  • Run make clean. Make a commit with your packages/ changes
  • Run make charts. Make a commit with your charts/ changes
  • Test your changes by pushing it to a branch. Once it is available at such a branch, it can be picked up by any tools that can point to Github based Helm Repositories (e.g. Rancher Cluster Explorer Apps & Marketplace).
    • Note: If you encounter bugs on testing and need to modify your commits, it is recommended that you continue to keep your packages/ changes and charts/ changes separate. Ideally, you should have 1+ commits that modify the packages/ directory for reviewers to view and 1 commit that modifies the charts/ directory as a generated changes commit.
  • Once you are ready to make a PR, ensure the last commit contains only the generated make charts changes and submit a PR. The PR workflow will automatically run make validate to ensure that your current repository wouldn't introduce any conflicts during a release.
  • Open up a PR with your changes.

Troubleshooting

Open up an issue on https://github.com/rancher/charts-build-scripts

Maintainers