Skip to content

Commit

Permalink
Merge pull request #86 from fcgravalos/fcgravalos/bugfix_nil_client
Browse files Browse the repository at this point in the history
fix nil pointer dereference bug in controller's regular kubernetes client
  • Loading branch information
Wiston999 authored Apr 4, 2022
2 parents 933629d + 232b5fc commit c293ef2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/default/manager_image_patch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ spec:
spec:
containers:
# Change the value of image field below to your controller image URL
- image: registry.hub.docker.com/tuentitech/secrets-manager:v2.0.0
- image: registry.hub.docker.com/tuentitech/secrets-manager:v2.0.1
name: manager
2 changes: 1 addition & 1 deletion deploy/version/version.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=v2.0.0
version=v2.0.1
1 change: 1 addition & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ func main() {
}

if err = (&controllers.SecretDefinitionReconciler{
Client: mgr.GetClient(),
Backend: *backendClient,
APIReader: mgr.GetAPIReader(),
Log: ctrl.Log.WithName("controllers").WithName("SecretDefinition"),
Expand Down

0 comments on commit c293ef2

Please sign in to comment.