Releases: redhat-openshift-ecosystem/operator-certification-operator
Releases · redhat-openshift-ecosystem/operator-certification-operator
1.0.2
What's Changed
- updating the owners file to align with people that are part the org by @acornett21 in #125
- fixing issues with pipeline_dependencies and status by @acornett21 in #124
- adding in the branchName as part of the git repo clone process by @acornett21 in #130
- Make sure that status is always reported by @bcrochet in #127
- updating all the necessary items to pass certification by @acornett21 in #131
- Fix the panic when there is no error in a reconciler by @bcrochet in #132
Full Changelog: 1.0.1...1.0.2
1.0.1
What's Changed
- Updating yaml to be in compliance. by @dcurran90 in #119
- Move Pipeline dependencies and git clone to reconciler by @bcrochet in #118
- Changes for Container Certification by @dcurran90 in #120
- Fix the Makefile to use go install for tools by @bcrochet in #123
- updating version and
release_tag
in the make file by @acornett21 in #122
Full Changelog: 1.0.0...1.0.1
1.0.0
0.0.2
What's Changed
- parametrize version label by @itroyano in #113
- adding in new flags to the OperatorPipelineSpec to determine what pipeline to install into the cluster when the CR is applied by @acornett21 in #111
- Added Get() to updateStatusCondition that stops the application from … by @spabba17 in #114
Full Changelog: 0.0.1...0.0.2
0.0.1
Initial release.
What's Changed
- Add Initial Operator Project by @jomkz in #1
- update ignore to include IDE and OS specific file exclusions by @acornett21 in #2
- Add pipeline operator resources by @jomkz in #3
- initial workflows and issue templates by @itroyano in #11
- changing ci file to run projects test by @acornett21 in #14
- uncommenting vendor director in ignore file so it doesn't get checked in by @acornett21 in #19
- configuring a package level k8s logger and using that throughout the controllers package by @acornett21 in #21
- kubeconfig secret name check by @skattoju in #16
- Updating
namePrefix
andnamespace
so operator can be installed by @acornett21 in #26 - reconcile pyxis api secret by @skattoju in #23
- ADD reconciler for pipeline and task resources - step 6 on operator-pipelines docs by @acmenezes in #13
- adding in support for git hub token by @acornett21 in #17
- adding in operator binary to git ignore by @acornett21 in #30
- logic updated to pyxis key by @spabba17 in #33
- initial operator bundle and build by @itroyano in #27
- a default for fetch-latest-release by @itroyano in #38
- refactor repeated code in secrets.go by @skattoju in #35
- adding additional error handling to not block additional reconciliation by @acornett21 in #34
- Changes to dockerfile to pass container check on preflight by @yashoza19 in #46
- Rename publicly-exposed constants to keep them private by @samira-barouti in #49
- SET owner reference for tekton pipelines and tasks by @acmenezes in #44
- Fix some linter issues by @bcrochet in #50
- add "latest" tag to the operator and bundle images by @itroyano in #53
- running make bundle to sync previous changes by @acornett21 in #65
- change the manger to imagePullPolicy: Always by @acornett21 in #63
- switching to use own namespace and make namespace oco by @acornett21 in #56
- updating readme instructions by @spabba17 in #51
- Pass context to any methods called from Reconcile by @bcrochet in #72
- Run 'make generate' and commit the changes by @bcrochet in #73
- changing kubeconfigSecretName to camelcase, so it passes the CRD validation by @acornett21 in #74
- Consolidated PR for bundle and build changes by @itroyano in #70
- quick rebase of the camecase changes by @itroyano in #75
- Refactor the dependency code to reduce duplication by @bcrochet in #71
- Add Github action to ensure CRD is up to dated if the go types have changed by @samira-barouti in #60
- Remove the 'v' from the catalog version in Makefile by @bcrochet in #78
- Revert "Run 'make generate' and commit the changes" by @bcrochet in #82
- update to go/ci/make to see if CI will pass by @acornett21 in #85
- implementing a common method to set the StatusCondition by @acornett21 in #77
- implementing updateStatusCondition method in ensureKubeConfigSecret by @acornett21 in #88
- implementing updateStatusCondition method in reconcilePipelineDependencies by @acornett21 in #89
- Automatically pull down operator-sdk locally by @bcrochet in #87
- adding checks for pinning and private registry secrets by @dcurran90 in #36
- ADD openshift-pipelines operator as a dependency on bundle by @bcrochet in #90
- implementing updateStatusCondition method in image streams by @acornett21 in #92
- implementing updateStatusCondition method in ensurePyxisAPISecret by @acornett21 in #91
- update code to only look for optional secrets if a user passes them into the CR by @acornett21 in #99
- add in updateStatusCondition when image streams are already found in the cluster by @acornett21 in #100
- Add vars for parts of the image spec by @bcrochet in #103
- Remove redundant secret fetch by @bcrochet in #102
- reducing the size of the builder image via go-build time module download by @itroyano in #98
- making calls to
updateStatusCondition
more readable by @acornett21 in #108 - updating the readme, installation doc, and csv to have more consistency by @acornett21 in #106
- starting a developer readme and adding a seed data file for testing by @acornett21 in #107
- adding in updateStatusCondition for optional resources by @acornett21 in #109
- adding in a note that this operator should only be used by Red Hat partners by @acornett21 in #110
New Contributors
- @jomkz made their first contribution in #1
- @acornett21 made their first contribution in #2
- @itroyano made their first contribution in #11
- @skattoju made their first contribution in #16
- @acmenezes made their first contribution in #13
- @spabba17 made their first contribution in #33
- @yashoza19 made their first contribution in #46
- @samira-barouti made their first contribution in #49
- @bcrochet made their first contribution in #50
- @dcurr...