Skip to content

Commit

Permalink
🐛 Fix volume name
Browse files Browse the repository at this point in the history
  • Loading branch information
adyanth committed Feb 27, 2022
1 parent 97c555e commit 8a7b0c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion controllers/clustertunnel_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ func (r *ClusterTunnelReconciler) deploymentForTunnel() *appsv1.Deployment {
ReadOnly: true,
})
volumes = append(volumes, corev1.Volume{
Name: "creds",
Name: "certs",
VolumeSource: corev1.VolumeSource{
Secret: &corev1.SecretVolumeSource{SecretName: r.tunnel.Spec.OriginCaPool},
},
Expand Down
2 changes: 1 addition & 1 deletion controllers/tunnel_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ func (r *TunnelReconciler) deploymentForTunnel() *appsv1.Deployment {
ReadOnly: true,
})
volumes = append(volumes, corev1.Volume{
Name: "creds",
Name: "certs",
VolumeSource: corev1.VolumeSource{
Secret: &corev1.SecretVolumeSource{SecretName: r.tunnel.Spec.OriginCaPool},
},
Expand Down

0 comments on commit 8a7b0c2

Please sign in to comment.