Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
a93b9b6d
Commit
a93b9b6d
authored
Mar 15, 2022
by
Brad Davidson
Committed by
Brad Davidson
Mar 16, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update helm-controller
Signed-off-by:
Brad Davidson
<
brad.davidson@rancher.com
>
parent
66e350ea
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
4 deletions
+5
-4
go.mod
go.mod
+1
-1
go.sum
go.sum
+2
-2
server.go
pkg/server/server.go
+1
-0
image-list.txt
scripts/airgap/image-list.txt
+1
-1
No files found.
go.mod
View file @
a93b9b6d
...
@@ -80,7 +80,7 @@ require (
...
@@ -80,7 +80,7 @@ require (
github.com/google/uuid v1.3.0
github.com/google/uuid v1.3.0
github.com/gorilla/mux v1.8.0
github.com/gorilla/mux v1.8.0
github.com/gorilla/websocket v1.4.2
github.com/gorilla/websocket v1.4.2
github.com/k3s-io/helm-controller v0.1
1.7
github.com/k3s-io/helm-controller v0.1
2.0
github.com/k3s-io/kine v0.8.1
github.com/k3s-io/kine v0.8.1
github.com/klauspost/compress v1.14.2
github.com/klauspost/compress v1.14.2
github.com/kubernetes-sigs/cri-tools v0.0.0-00010101000000-000000000000
github.com/kubernetes-sigs/cri-tools v0.0.0-00010101000000-000000000000
...
...
go.sum
View file @
a93b9b6d
...
@@ -654,8 +654,8 @@ github.com/k3s-io/etcd/etcdutl/v3 v3.5.1-k3s1 h1:FK0fnJI8kvP3P2yjxypkFVnokeQwXgA
...
@@ -654,8 +654,8 @@ github.com/k3s-io/etcd/etcdutl/v3 v3.5.1-k3s1 h1:FK0fnJI8kvP3P2yjxypkFVnokeQwXgA
github.com/k3s-io/etcd/etcdutl/v3 v3.5.1-k3s1/go.mod h1:fDeCOsFfxdcMIbjSoKLJQDCFRv0ixQY+tyOuPF7uEQU=
github.com/k3s-io/etcd/etcdutl/v3 v3.5.1-k3s1/go.mod h1:fDeCOsFfxdcMIbjSoKLJQDCFRv0ixQY+tyOuPF7uEQU=
github.com/k3s-io/etcd/server/v3 v3.5.1-k3s1 h1:B9DDdjIwQo2UXIflhSinSEDrihQOKJwEYjUejPpH6Js=
github.com/k3s-io/etcd/server/v3 v3.5.1-k3s1 h1:B9DDdjIwQo2UXIflhSinSEDrihQOKJwEYjUejPpH6Js=
github.com/k3s-io/etcd/server/v3 v3.5.1-k3s1/go.mod h1:yBKYw++NWu6ciuWoKuL7UXgGKDP7ICBCuVQrIcYbPdw=
github.com/k3s-io/etcd/server/v3 v3.5.1-k3s1/go.mod h1:yBKYw++NWu6ciuWoKuL7UXgGKDP7ICBCuVQrIcYbPdw=
github.com/k3s-io/helm-controller v0.1
1.7 h1:fNpBImB3h5aHvPf3zwU9sFWmeVQh0nTG1sLCoBhEeU
g=
github.com/k3s-io/helm-controller v0.1
2.0 h1:OIi43oEqIggVdc1z4BRzGPpNzvr5xV5EcG+RldJrIa
g=
github.com/k3s-io/helm-controller v0.1
1.7/go.mod h1:z0ExsRRIkTO/QC//3/Esn5ItTD6AiQSluwzMaS7RI/4
=
github.com/k3s-io/helm-controller v0.1
2.0/go.mod h1:yBS3F5emwVjyzUUi3VWAuj9+Ogoq84Mf7CBXbAnKI1U
=
github.com/k3s-io/kine v0.8.1 h1:cuxZmENBUL5lvJORWGBjn87kKtIo8GK7o8H1hu+vd98=
github.com/k3s-io/kine v0.8.1 h1:cuxZmENBUL5lvJORWGBjn87kKtIo8GK7o8H1hu+vd98=
github.com/k3s-io/kine v0.8.1/go.mod h1:gaezUQ9c8iw8vxDV/DI8vc93h2rCpTvY37kMdYPMsyc=
github.com/k3s-io/kine v0.8.1/go.mod h1:gaezUQ9c8iw8vxDV/DI8vc93h2rCpTvY37kMdYPMsyc=
github.com/k3s-io/klog v1.0.0-k3s2 h1:yyvD2bQbxG7m85/pvNctLX2bUDmva5kOBvuZ77tTGBA=
github.com/k3s-io/klog v1.0.0-k3s2 h1:yyvD2bQbxG7m85/pvNctLX2bUDmva5kOBvuZ77tTGBA=
...
...
pkg/server/server.go
View file @
a93b9b6d
...
@@ -206,6 +206,7 @@ func coreControllers(ctx context.Context, sc *Context, config *Config) error {
...
@@ -206,6 +206,7 @@ func coreControllers(ctx context.Context, sc *Context, config *Config) error {
if
!
config
.
ControlConfig
.
DisableHelmController
{
if
!
config
.
ControlConfig
.
DisableHelmController
{
helm
.
Register
(
ctx
,
helm
.
Register
(
ctx
,
sc
.
K8s
,
sc
.
Apply
,
sc
.
Apply
,
sc
.
Helm
.
Helm
()
.
V1
()
.
HelmChart
(),
sc
.
Helm
.
Helm
()
.
V1
()
.
HelmChart
(),
sc
.
Helm
.
Helm
()
.
V1
()
.
HelmChartConfig
(),
sc
.
Helm
.
Helm
()
.
V1
()
.
HelmChartConfig
(),
...
...
scripts/airgap/image-list.txt
View file @
a93b9b6d
docker.io/rancher/klipper-helm:v0.
6.6-build20211022
docker.io/rancher/klipper-helm:v0.
7.0-build20220315
docker.io/rancher/klipper-lb:v0.3.4
docker.io/rancher/klipper-lb:v0.3.4
docker.io/rancher/local-path-provisioner:v0.0.21
docker.io/rancher/local-path-provisioner:v0.0.21
docker.io/rancher/mirrored-coredns-coredns:1.8.6
docker.io/rancher/mirrored-coredns-coredns:1.8.6
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment