Skip to content

Commit

Permalink
Fix custom cluster registration private IPv6 command. (rancher#9830)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shavindra authored Oct 4, 2023
1 parent e6acc87 commit 07ccd42
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default {
this.controlPlane && out.push('--controlplane');
this.worker && out.push('--worker');
this.address && out.push(`--address ${ sanitizeIP(this.address) }`);
this.internalAddress && out.push(`--internal-address ${ sanitizeValue(this.internalAddress) }`);
this.internalAddress && out.push(`--internal-address ${ sanitizeIP(this.internalAddress) }`);
this.nodeName && out.push(`--node-name ${ sanitizeValue(this.nodeName) }`);
for ( const key in this.labels ) {
Expand Down

0 comments on commit 07ccd42

Please sign in to comment.