Merge pull request #46 from fluxcd/spec/domain-change

This commit is contained in:
Hidde Beydals 2020-07-31 09:15:16 +02:00 committed by GitHub
commit 5ad42954e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
27 changed files with 85 additions and 85 deletions

View File

@ -29,4 +29,4 @@ HelmChart revision had changed.
This is the first alpha release of helm-controller.
The controller is an implementation of the
[helm.fluxcd.io/v2alpha1](https://github.com/fluxcd/helm-controller/tree/master/docs/spec/v2alpha1) API.
[helm.fluxcd.io/v2alpha1](https://github.com/fluxcd/helm-controller/tree/v0.0.1-alpha.1/docs/spec/v2alpha1) API.

View File

@ -1,4 +1,4 @@
domain: fluxcd.io
domain: toolkit.fluxcd.io
repo: github.com/fluxcd/helm-controller
resources:
- group: helm

View File

@ -16,5 +16,5 @@ limitations under the License.
// Package v2alpha1 contains API Schema definitions for the helm v2alpha1 API group
// +kubebuilder:object:generate=true
// +groupName=helm.fluxcd.io
// +groupName=helm.toolkit.fluxcd.io
package v2alpha1

View File

@ -23,7 +23,7 @@ import (
var (
// GroupVersion is group version used to register these objects
GroupVersion = schema.GroupVersion{Group: "helm.fluxcd.io", Version: "v2alpha1"}
GroupVersion = schema.GroupVersion{Group: "helm.toolkit.fluxcd.io", Version: "v2alpha1"}
// SchemeBuilder is used to add go types to the GroupVersionKind scheme
SchemeBuilder = &scheme.Builder{GroupVersion: GroupVersion}

View File

@ -6,9 +6,9 @@ metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.3.0
creationTimestamp: null
name: helmreleases.helm.fluxcd.io
name: helmreleases.helm.toolkit.fluxcd.io
spec:
group: helm.fluxcd.io
group: helm.toolkit.fluxcd.io
names:
kind: HelmRelease
listKind: HelmReleaseList

View File

@ -1,5 +1,5 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- bases/helm.fluxcd.io_helmreleases.yaml
- bases/helm.toolkit.fluxcd.io_helmreleases.yaml
# +kubebuilder:scaffold:crdkustomizeresource

View File

@ -5,6 +5,6 @@ resources:
- ../crd
- ../rbac
- ../manager
- github.com/fluxcd/source-controller/config//crd?ref=v0.0.6
- github.com/fluxcd/source-controller/config//manager?ref=v0.0.6
- github.com/fluxcd/source-controller/config//crd?ref=v0.0.7
- github.com/fluxcd/source-controller/config//manager?ref=v0.0.7
- namespace.yaml

View File

@ -5,7 +5,7 @@ metadata:
name: helmrelease-editor-role
rules:
- apiGroups:
- helm.fluxcd.io
- helm.toolkit.fluxcd.io
resources:
- helmreleases
verbs:
@ -17,7 +17,7 @@ rules:
- update
- watch
- apiGroups:
- helm.fluxcd.io
- helm.toolkit.fluxcd.io
resources:
- helmreleases/status
verbs:

View File

@ -5,7 +5,7 @@ metadata:
name: helmrelease-viewer-role
rules:
- apiGroups:
- helm.fluxcd.io
- helm.toolkit.fluxcd.io
resources:
- helmreleases
verbs:
@ -13,7 +13,7 @@ rules:
- list
- watch
- apiGroups:
- helm.fluxcd.io
- helm.toolkit.fluxcd.io
resources:
- helmreleases/status
verbs:

View File

@ -7,7 +7,7 @@ metadata:
name: manager-role
rules:
- apiGroups:
- helm.fluxcd.io
- helm.toolkit.fluxcd.io
resources:
- helmreleases
verbs:
@ -19,7 +19,7 @@ rules:
- update
- watch
- apiGroups:
- helm.fluxcd.io
- helm.toolkit.fluxcd.io
resources:
- helmreleases/status
verbs:
@ -27,7 +27,7 @@ rules:
- patch
- update
- apiGroups:
- source.fluxcd.io
- source.toolkit.fluxcd.io
resources:
- helmcharts
verbs:
@ -35,7 +35,7 @@ rules:
- list
- watch
- apiGroups:
- source.fluxcd.io
- source.toolkit.fluxcd.io
resources:
- helmcharts/status
verbs:

View File

@ -1,4 +1,4 @@
apiVersion: helm.fluxcd.io/v2alpha1
apiVersion: helm.toolkit.fluxcd.io/v2alpha1
kind: HelmRelease
metadata:
name: podinfo

View File

@ -1,4 +1,4 @@
apiVersion: source.fluxcd.io/v1alpha1
apiVersion: source.toolkit.fluxcd.io/v1alpha1
kind: HelmRepository
metadata:
name: podinfo

View File

@ -1,4 +1,4 @@
apiVersion: helm.fluxcd.io/v2alpha1
apiVersion: helm.toolkit.fluxcd.io/v2alpha1
kind: HelmRelease
metadata:
name: backend

View File

@ -1,4 +1,4 @@
apiVersion: helm.fluxcd.io/v2alpha1
apiVersion: helm.toolkit.fluxcd.io/v2alpha1
kind: HelmRelease
metadata:
name: frontend

View File

@ -1,4 +1,4 @@
apiVersion: source.fluxcd.io/v1alpha1
apiVersion: source.toolkit.fluxcd.io/v1alpha1
kind: HelmRepository
metadata:
name: webapp

View File

@ -1,4 +1,4 @@
apiVersion: helm.fluxcd.io/v2alpha1
apiVersion: helm.toolkit.fluxcd.io/v2alpha1
kind: HelmRelease
metadata:
name: podinfo

View File

@ -1,4 +1,4 @@
apiVersion: source.fluxcd.io/v1alpha1
apiVersion: source.toolkit.fluxcd.io/v1alpha1
kind: HelmRepository
metadata:
name: podinfo

View File

@ -1,4 +1,4 @@
apiVersion: helm.fluxcd.io/v2alpha1
apiVersion: helm.toolkit.fluxcd.io/v2alpha1
kind: HelmRelease
metadata:
name: valuesfrom

View File

@ -1,4 +1,4 @@
apiVersion: source.fluxcd.io/v1alpha1
apiVersion: source.toolkit.fluxcd.io/v1alpha1
kind: HelmRepository
metadata:
name: valuesfrom

View File

@ -43,8 +43,8 @@ type HelmChartWatcher struct {
Scheme *runtime.Scheme
}
// +kubebuilder:rbac:groups=source.fluxcd.io,resources=helmcharts,verbs=get;list;watch
// +kubebuilder:rbac:groups=source.fluxcd.io,resources=helmcharts/status,verbs=get
// +kubebuilder:rbac:groups=source.toolkit.fluxcd.io,resources=helmcharts,verbs=get;list;watch
// +kubebuilder:rbac:groups=source.toolkit.fluxcd.io,resources=helmcharts/status,verbs=get
func (r *HelmChartWatcher) Reconcile(req ctrl.Request) (ctrl.Result, error) {
ctx, cancel := context.WithTimeout(context.Background(), 15*time.Second)

View File

@ -68,8 +68,8 @@ type HelmReleaseReconciler struct {
ExternalEventRecorder *recorder.EventRecorder
}
// +kubebuilder:rbac:groups=helm.fluxcd.io,resources=helmreleases,verbs=get;list;watch;create;update;patch;delete
// +kubebuilder:rbac:groups=helm.fluxcd.io,resources=helmreleases/status,verbs=get;update;patch
// +kubebuilder:rbac:groups=helm.toolkit.fluxcd.io,resources=helmreleases,verbs=get;list;watch;create;update;patch;delete
// +kubebuilder:rbac:groups=helm.toolkit.fluxcd.io,resources=helmreleases/status,verbs=get;update;patch
func (r *HelmReleaseReconciler) Reconcile(req ctrl.Request) (ctrl.Result, error) {
ctx := context.Background()

View File

@ -2,16 +2,16 @@
<p>Packages:</p>
<ul class="simple">
<li>
<a href="#helm.fluxcd.io%2fv2alpha1">helm.fluxcd.io/v2alpha1</a>
<a href="#helm.toolkit.fluxcd.io%2fv2alpha1">helm.toolkit.fluxcd.io/v2alpha1</a>
</li>
</ul>
<h2 id="helm.fluxcd.io/v2alpha1">helm.fluxcd.io/v2alpha1</h2>
<h2 id="helm.toolkit.fluxcd.io/v2alpha1">helm.toolkit.fluxcd.io/v2alpha1</h2>
<p>Package v2alpha1 contains API Schema definitions for the helm v2alpha1 API group</p>
Resource Types:
<ul class="simple"><li>
<a href="#helm.fluxcd.io/v2alpha1.HelmRelease">HelmRelease</a>
<a href="#helm.toolkit.fluxcd.io/v2alpha1.HelmRelease">HelmRelease</a>
</li></ul>
<h3 id="helm.fluxcd.io/v2alpha1.HelmRelease">HelmRelease
<h3 id="helm.toolkit.fluxcd.io/v2alpha1.HelmRelease">HelmRelease
</h3>
<p>HelmRelease is the Schema for the helmreleases API</p>
<div class="md-typeset__scrollwrap">
@ -29,7 +29,7 @@ Resource Types:
<code>apiVersion</code><br>
string</td>
<td>
<code>helm.fluxcd.io/v2alpha1</code>
<code>helm.toolkit.fluxcd.io/v2alpha1</code>
</td>
</tr>
<tr>
@ -59,7 +59,7 @@ Refer to the Kubernetes API documentation for the fields of the
<td>
<code>spec</code><br>
<em>
<a href="#helm.fluxcd.io/v2alpha1.HelmReleaseSpec">
<a href="#helm.toolkit.fluxcd.io/v2alpha1.HelmReleaseSpec">
HelmReleaseSpec
</a>
</em>
@ -72,7 +72,7 @@ HelmReleaseSpec
<td>
<code>chart</code><br>
<em>
<a href="#helm.fluxcd.io/v2alpha1.HelmChartTemplate">
<a href="#helm.toolkit.fluxcd.io/v2alpha1.HelmChartTemplate">
HelmChartTemplate
</a>
</em>
@ -178,7 +178,7 @@ Use &lsquo;0&rsquo; for an unlimited number of revisions; defaults to &lsquo;10&
<td>
<code>install</code><br>
<em>
<a href="#helm.fluxcd.io/v2alpha1.Install">
<a href="#helm.toolkit.fluxcd.io/v2alpha1.Install">
Install
</a>
</em>
@ -192,7 +192,7 @@ Install
<td>
<code>upgrade</code><br>
<em>
<a href="#helm.fluxcd.io/v2alpha1.Upgrade">
<a href="#helm.toolkit.fluxcd.io/v2alpha1.Upgrade">
Upgrade
</a>
</em>
@ -206,7 +206,7 @@ Upgrade
<td>
<code>test</code><br>
<em>
<a href="#helm.fluxcd.io/v2alpha1.Test">
<a href="#helm.toolkit.fluxcd.io/v2alpha1.Test">
Test
</a>
</em>
@ -220,7 +220,7 @@ Test
<td>
<code>rollback</code><br>
<em>
<a href="#helm.fluxcd.io/v2alpha1.Rollback">
<a href="#helm.toolkit.fluxcd.io/v2alpha1.Rollback">
Rollback
</a>
</em>
@ -234,7 +234,7 @@ Rollback
<td>
<code>uninstall</code><br>
<em>
<a href="#helm.fluxcd.io/v2alpha1.Uninstall">
<a href="#helm.toolkit.fluxcd.io/v2alpha1.Uninstall">
Uninstall
</a>
</em>
@ -248,7 +248,7 @@ Uninstall
<td>
<code>valuesFrom</code><br>
<em>
<a href="#helm.fluxcd.io/v2alpha1.ValuesReference">
<a href="#helm.toolkit.fluxcd.io/v2alpha1.ValuesReference">
[]ValuesReference
</a>
</em>
@ -277,7 +277,7 @@ k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1.JSON
<td>
<code>status</code><br>
<em>
<a href="#helm.fluxcd.io/v2alpha1.HelmReleaseStatus">
<a href="#helm.toolkit.fluxcd.io/v2alpha1.HelmReleaseStatus">
HelmReleaseStatus
</a>
</em>
@ -289,11 +289,11 @@ HelmReleaseStatus
</table>
</div>
</div>
<h3 id="helm.fluxcd.io/v2alpha1.Condition">Condition
<h3 id="helm.toolkit.fluxcd.io/v2alpha1.Condition">Condition
</h3>
<p>
(<em>Appears on:</em>
<a href="#helm.fluxcd.io/v2alpha1.HelmReleaseStatus">HelmReleaseStatus</a>)
<a href="#helm.toolkit.fluxcd.io/v2alpha1.HelmReleaseStatus">HelmReleaseStatus</a>)
</p>
<p>Condition contains condition information for a HelmRelease.</p>
<div class="md-typeset__scrollwrap">
@ -373,11 +373,11 @@ transition, complementing reason.</p>
</table>
</div>
</div>
<h3 id="helm.fluxcd.io/v2alpha1.CrossNamespaceObjectReference">CrossNamespaceObjectReference
<h3 id="helm.toolkit.fluxcd.io/v2alpha1.CrossNamespaceObjectReference">CrossNamespaceObjectReference
</h3>
<p>
(<em>Appears on:</em>
<a href="#helm.fluxcd.io/v2alpha1.HelmChartTemplate">HelmChartTemplate</a>)
<a href="#helm.toolkit.fluxcd.io/v2alpha1.HelmChartTemplate">HelmChartTemplate</a>)
</p>
<p>CrossNamespaceObjectReference contains enough information to let you locate the
typed referenced object at cluster level.</p>
@ -441,11 +441,11 @@ string
</table>
</div>
</div>
<h3 id="helm.fluxcd.io/v2alpha1.HelmChartTemplate">HelmChartTemplate
<h3 id="helm.toolkit.fluxcd.io/v2alpha1.HelmChartTemplate">HelmChartTemplate
</h3>
<p>
(<em>Appears on:</em>
<a href="#helm.fluxcd.io/v2alpha1.HelmReleaseSpec">HelmReleaseSpec</a>)
<a href="#helm.toolkit.fluxcd.io/v2alpha1.HelmReleaseSpec">HelmReleaseSpec</a>)
</p>
<p>HelmChartTemplate defines the template from which the controller
will generate a HelmChart object in the same namespace as the HelmRepository.</p>
@ -486,7 +486,7 @@ string
<td>
<code>sourceRef</code><br>
<em>
<a href="#helm.fluxcd.io/v2alpha1.CrossNamespaceObjectReference">
<a href="#helm.toolkit.fluxcd.io/v2alpha1.CrossNamespaceObjectReference">
CrossNamespaceObjectReference
</a>
</em>
@ -514,11 +514,11 @@ Defaults to &lsquo;HelmReleaseSpec.Interval&rsquo;.</p>
</table>
</div>
</div>
<h3 id="helm.fluxcd.io/v2alpha1.HelmReleaseSpec">HelmReleaseSpec
<h3 id="helm.toolkit.fluxcd.io/v2alpha1.HelmReleaseSpec">HelmReleaseSpec
</h3>
<p>
(<em>Appears on:</em>
<a href="#helm.fluxcd.io/v2alpha1.HelmRelease">HelmRelease</a>)
<a href="#helm.toolkit.fluxcd.io/v2alpha1.HelmRelease">HelmRelease</a>)
</p>
<p>HelmReleaseSpec defines the desired state of HelmRelease.</p>
<div class="md-typeset__scrollwrap">
@ -535,7 +535,7 @@ Defaults to &lsquo;HelmReleaseSpec.Interval&rsquo;.</p>
<td>
<code>chart</code><br>
<em>
<a href="#helm.fluxcd.io/v2alpha1.HelmChartTemplate">
<a href="#helm.toolkit.fluxcd.io/v2alpha1.HelmChartTemplate">
HelmChartTemplate
</a>
</em>
@ -641,7 +641,7 @@ Use &lsquo;0&rsquo; for an unlimited number of revisions; defaults to &lsquo;10&
<td>
<code>install</code><br>
<em>
<a href="#helm.fluxcd.io/v2alpha1.Install">
<a href="#helm.toolkit.fluxcd.io/v2alpha1.Install">
Install
</a>
</em>
@ -655,7 +655,7 @@ Install
<td>
<code>upgrade</code><br>
<em>
<a href="#helm.fluxcd.io/v2alpha1.Upgrade">
<a href="#helm.toolkit.fluxcd.io/v2alpha1.Upgrade">
Upgrade
</a>
</em>
@ -669,7 +669,7 @@ Upgrade
<td>
<code>test</code><br>
<em>
<a href="#helm.fluxcd.io/v2alpha1.Test">
<a href="#helm.toolkit.fluxcd.io/v2alpha1.Test">
Test
</a>
</em>
@ -683,7 +683,7 @@ Test
<td>
<code>rollback</code><br>
<em>
<a href="#helm.fluxcd.io/v2alpha1.Rollback">
<a href="#helm.toolkit.fluxcd.io/v2alpha1.Rollback">
Rollback
</a>
</em>
@ -697,7 +697,7 @@ Rollback
<td>
<code>uninstall</code><br>
<em>
<a href="#helm.fluxcd.io/v2alpha1.Uninstall">
<a href="#helm.toolkit.fluxcd.io/v2alpha1.Uninstall">
Uninstall
</a>
</em>
@ -711,7 +711,7 @@ Uninstall
<td>
<code>valuesFrom</code><br>
<em>
<a href="#helm.fluxcd.io/v2alpha1.ValuesReference">
<a href="#helm.toolkit.fluxcd.io/v2alpha1.ValuesReference">
[]ValuesReference
</a>
</em>
@ -737,11 +737,11 @@ k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1.JSON
</table>
</div>
</div>
<h3 id="helm.fluxcd.io/v2alpha1.HelmReleaseStatus">HelmReleaseStatus
<h3 id="helm.toolkit.fluxcd.io/v2alpha1.HelmReleaseStatus">HelmReleaseStatus
</h3>
<p>
(<em>Appears on:</em>
<a href="#helm.fluxcd.io/v2alpha1.HelmRelease">HelmRelease</a>)
<a href="#helm.toolkit.fluxcd.io/v2alpha1.HelmRelease">HelmRelease</a>)
</p>
<p>HelmReleaseStatus defines the observed state of HelmRelease</p>
<div class="md-typeset__scrollwrap">
@ -770,7 +770,7 @@ int64
<td>
<code>conditions</code><br>
<em>
<a href="#helm.fluxcd.io/v2alpha1.Condition">
<a href="#helm.toolkit.fluxcd.io/v2alpha1.Condition">
[]Condition
</a>
</em>
@ -858,11 +858,11 @@ reconciliation.</p>
</table>
</div>
</div>
<h3 id="helm.fluxcd.io/v2alpha1.Install">Install
<h3 id="helm.toolkit.fluxcd.io/v2alpha1.Install">Install
</h3>
<p>
(<em>Appears on:</em>
<a href="#helm.fluxcd.io/v2alpha1.HelmReleaseSpec">HelmReleaseSpec</a>)
<a href="#helm.toolkit.fluxcd.io/v2alpha1.HelmReleaseSpec">HelmReleaseSpec</a>)
</p>
<p>Install holds the configuration for Helm install actions.</p>
<div class="md-typeset__scrollwrap">
@ -959,11 +959,11 @@ CRDs are installed if not already present.</p>
</table>
</div>
</div>
<h3 id="helm.fluxcd.io/v2alpha1.Rollback">Rollback
<h3 id="helm.toolkit.fluxcd.io/v2alpha1.Rollback">Rollback
</h3>
<p>
(<em>Appears on:</em>
<a href="#helm.fluxcd.io/v2alpha1.HelmReleaseSpec">HelmReleaseSpec</a>)
<a href="#helm.toolkit.fluxcd.io/v2alpha1.HelmReleaseSpec">HelmReleaseSpec</a>)
</p>
<p>Rollback holds the configuration for Helm rollback actions.</p>
<div class="md-typeset__scrollwrap">
@ -1071,11 +1071,11 @@ rollback action when it fails.</p>
</table>
</div>
</div>
<h3 id="helm.fluxcd.io/v2alpha1.Test">Test
<h3 id="helm.toolkit.fluxcd.io/v2alpha1.Test">Test
</h3>
<p>
(<em>Appears on:</em>
<a href="#helm.fluxcd.io/v2alpha1.HelmReleaseSpec">HelmReleaseSpec</a>)
<a href="#helm.toolkit.fluxcd.io/v2alpha1.HelmReleaseSpec">HelmReleaseSpec</a>)
</p>
<p>Test holds the configuration for Helm test actions.</p>
<div class="md-typeset__scrollwrap">
@ -1121,11 +1121,11 @@ during the performance of a Helm test action. Defaults to
</table>
</div>
</div>
<h3 id="helm.fluxcd.io/v2alpha1.Uninstall">Uninstall
<h3 id="helm.toolkit.fluxcd.io/v2alpha1.Uninstall">Uninstall
</h3>
<p>
(<em>Appears on:</em>
<a href="#helm.fluxcd.io/v2alpha1.HelmReleaseSpec">HelmReleaseSpec</a>)
<a href="#helm.toolkit.fluxcd.io/v2alpha1.HelmReleaseSpec">HelmReleaseSpec</a>)
</p>
<p>Uninstall holds the configuration for Helm uninstall actions.</p>
<div class="md-typeset__scrollwrap">
@ -1183,13 +1183,13 @@ deleted, but retain the release history.</p>
</table>
</div>
</div>
<h3 id="helm.fluxcd.io/v2alpha1.Unsortable">Unsortable
<h3 id="helm.toolkit.fluxcd.io/v2alpha1.Unsortable">Unsortable
(<code>[][]string</code> alias)</h3>
<h3 id="helm.fluxcd.io/v2alpha1.Upgrade">Upgrade
<h3 id="helm.toolkit.fluxcd.io/v2alpha1.Upgrade">Upgrade
</h3>
<p>
(<em>Appears on:</em>
<a href="#helm.fluxcd.io/v2alpha1.HelmReleaseSpec">HelmReleaseSpec</a>)
<a href="#helm.toolkit.fluxcd.io/v2alpha1.HelmReleaseSpec">HelmReleaseSpec</a>)
</p>
<p>Upgrade holds the configuration for Helm upgrade actions.</p>
<div class="md-typeset__scrollwrap">
@ -1312,11 +1312,11 @@ upgrade action when it fails.</p>
</table>
</div>
</div>
<h3 id="helm.fluxcd.io/v2alpha1.ValuesReference">ValuesReference
<h3 id="helm.toolkit.fluxcd.io/v2alpha1.ValuesReference">ValuesReference
</h3>
<p>
(<em>Appears on:</em>
<a href="#helm.fluxcd.io/v2alpha1.HelmReleaseSpec">HelmReleaseSpec</a>)
<a href="#helm.toolkit.fluxcd.io/v2alpha1.HelmReleaseSpec">HelmReleaseSpec</a>)
</p>
<p>ValuesReference contains a reference to a resource containing Helm values,
and optionally the key they can be found at.</p>

View File

@ -50,7 +50,7 @@ trigger a Helm uninstall.
Alerting can be configured with a Kubernetes custom resource that specifies a webhook address, and a
group of `HelmRelease` resources to be monitored using the [notification-controller](https://github.com/fluxcd/notification-controller).
The API design of the controller can be found at [helm.fluxcd.io/v2alpha1](./v2alpha1/helmreleases.md).
The API design of the controller can be found at [helm.toolkit.fluxcd.io/v2alpha1](./v2alpha1/helmreleases.md).
## Backward compatibility

View File

@ -1,4 +1,4 @@
# helm.fluxcd.io/v2alpha1
# helm.toolkit.fluxcd.io/v2alpha1
This is the v2alpha1 API specification for declaratively managing Helm chart releases with
Kubernetes manifests.

View File

@ -422,7 +422,7 @@ Assuming two `HelmRelease` resources:
- `frontend` - contains the frontend of the application and relies on the backend
```yaml
apiVersion: helm.fluxcd.io/v2alpha1
apiVersion: helm.toolkit.fluxcd.io/v2alpha1
kind: HelmRelease
metadata:
name: backend
@ -447,7 +447,7 @@ spec:
cpu: 100m
memory: 64Mi
---
apiVersion: helm.fluxcd.io/v2alpha1
apiVersion: helm.toolkit.fluxcd.io/v2alpha1
kind: HelmRelease
metadata:
name: frontend
@ -483,7 +483,7 @@ From time to time an Helm upgrade made by the helm-controller may fail, automati
from this via a Helm rollback action is possible by enabling rollbacks for the `HelmRelease`.
```yaml
apiVersion: helm.fluxcd.io/v2alpha1
apiVersion: helm.toolkit.fluxcd.io/v2alpha1
kind: HelmRelease
metadata:
name: podinfo
@ -514,7 +514,7 @@ To make the controller run the Helm tests available for your chart after a succe
or upgrade, `spec.test.enable` should be set to `true`.
```yaml
apiVersion: helm.fluxcd.io/v2alpha1
apiVersion: helm.toolkit.fluxcd.io/v2alpha1
kind: HelmRelease
metadata:
name: podinfo

2
go.mod
View File

@ -4,7 +4,7 @@ go 1.14
require (
github.com/fluxcd/pkg v0.0.3
github.com/fluxcd/source-controller v0.0.6
github.com/fluxcd/source-controller v0.0.7
github.com/go-logr/logr v0.1.0
github.com/onsi/ginkgo v1.12.1
github.com/onsi/gomega v1.10.1

4
go.sum
View File

@ -168,8 +168,8 @@ github.com/fatih/color v1.7.0 h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys=
github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4=
github.com/fluxcd/pkg v0.0.3 h1:yhjtpGtD9LxFo8JtwTuUxJyFcX2wSSb0TPptIEpGSmA=
github.com/fluxcd/pkg v0.0.3/go.mod h1:rtlppQU+9DNikyDZptLdOeTf+wBvQQiQQ/J113FPoeU=
github.com/fluxcd/source-controller v0.0.6 h1:8yBdy5ZQmM4jZWHDBDgysftZnC1mybyfkV7NRzCo5Kc=
github.com/fluxcd/source-controller v0.0.6/go.mod h1:XZR988ahVLjbqfe0EUq2Zl7bYH2NBly3u0n7DY5XtyU=
github.com/fluxcd/source-controller v0.0.7 h1:D17Le7bc+53deRA3EMJc9eB/uU2HqvkMCwILE5HRhPk=
github.com/fluxcd/source-controller v0.0.7/go.mod h1:XZR988ahVLjbqfe0EUq2Zl7bYH2NBly3u0n7DY5XtyU=
github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568/go.mod h1:xEzjJPgXI435gkrCt3MPfRiAkVrwSbHsst4LCFVfpJc=
github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I=
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=