Skip to content

Commit

Permalink
fix: typos
Browse files Browse the repository at this point in the history
Signed-off-by: budimanjojo <budimanjojo@gmail.com>
  • Loading branch information
budimanjojo committed Jun 4, 2024
1 parent e0c7742 commit ca2f662
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkg/config/nodeconfigs.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ func (node *Node) OverrideGlobalCfg(cfg NodeConfigs) *Node {
func mergeNodeConfigs(patch, src NodeConfigs, overridePatches, overrideExtraManifest bool) NodeConfigs {
if len(src.Patches) > 0 && !overridePatches {
// global patches should get applied first
// https://github.com/budimanjojo/talhelper/v3/issues/388
// https://github.com/budimanjojo/talhelper/issues/388
patch.Patches = append(src.Patches, patch.Patches...)
}
if len(src.ExtraManifests) > 0 && !overrideExtraManifest {
Expand Down
2 changes: 1 addition & 1 deletion pkg/substitute/envsubst.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func LoadEnvFromFiles(files []string) error {
return fmt.Errorf("trying to decrypt %s with sops: %s", file, err)
}

// See: https://github.com/budimanjojo/talhelper/v3/issues/220
// See: https://github.com/budimanjojo/talhelper/issues/220
env = stripYAMLDocDelimiter(env)
if err := LoadEnv(env); err != nil {
return fmt.Errorf("trying to load env from %s: %s", file, err)
Expand Down
2 changes: 1 addition & 1 deletion pkg/talos/nodeconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func GenerateNodeConfig(node *config.Node, input *generate.Input, iFactory *conf
}
}

// https://github.com/budimanjojo/talhelper/v3/issues/81
// https://github.com/budimanjojo/talhelper/issues/81
if input.Options.VersionContract.SecretboxEncryptionSupported() && input.Options.SecretsBundle.Secrets.AESCBCEncryptionSecret != "" {
slog.Debug("encryption with secretbox is supported and AESCBCEncryptionSecret is not empty")
c.RawV1Alpha1().ClusterConfig.ClusterAESCBCEncryptionSecret = input.Options.SecretsBundle.Secrets.AESCBCEncryptionSecret
Expand Down

0 comments on commit ca2f662

Please sign in to comment.