Skip to content

Commit

Permalink
Fix image vector path.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit91 committed Apr 12, 2023
1 parent b949710 commit f0f39b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/controller/actuator.go
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ func seedObjects(cc *config.ControllerConfiguration, authConfig *v1alpha1.AuthnC
Containers: []corev1.Container{
{
Name: "kubernetes-authn-webhook",
Image: authnImage.Repository,
Image: authnImage.String(),
ImagePullPolicy: corev1.PullIfNotPresent,
Ports: []corev1.ContainerPort{
{
Expand Down Expand Up @@ -329,7 +329,7 @@ func seedObjects(cc *config.ControllerConfiguration, authConfig *v1alpha1.AuthnC
Containers: []corev1.Container{
{
Name: "group-rolebinding-controller",
Image: grcImage.Repository,
Image: grcImage.String(),
ImagePullPolicy: corev1.PullIfNotPresent,
Command: []string{"/group-rolebinding-controller"},
Args: []string{
Expand Down

0 comments on commit f0f39b3

Please sign in to comment.