Skip to content

Commit

Permalink
Undo any single-quote changes across yaml
Browse files Browse the repository at this point in the history
Signed-off-by: Kyle Squizzato <[email protected]>
  • Loading branch information
squizzi committed Sep 17, 2024
1 parent 295893f commit 0572de9
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 38 deletions.
4 changes: 2 additions & 2 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ issues:
# restore some of the defaults
# (fill in the rest as needed)
exclude-rules:
- path: 'api/*'
- path: "api/*"
linters:
- lll
- path: 'internal/*'
- path: "internal/*"
linters:
- dupl
- lll
Expand Down
2 changes: 1 addition & 1 deletion templates/cluster/aws-hosted-cp/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ version: 0.1.3
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: '1.30.4+k0s.0'
appVersion: "1.30.4+k0s.0"
annotations:
hmc.mirantis.com/infrastructure-providers: aws
hmc.mirantis.com/controlplane-providers: k0smotron
Expand Down
26 changes: 13 additions & 13 deletions templates/cluster/aws-hosted-cp/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,33 +4,33 @@ workersNumber: 2
clusterNetwork:
pods:
cidrBlocks:
- '10.244.0.0/16'
- "10.244.0.0/16"
services:
cidrBlocks:
- '10.96.0.0/12'
- "10.96.0.0/12"

# AWS cluster parameters
vpcID: ''
region: ''
sshKeyName: ''
vpcID: ""
region: ""
sshKeyName: ""
publicIP: false
subnets:
- id: ''
availabilityZone: ''
- id: ""
availabilityZone: ""
bastion:
enabled: false
disableIngressRules: false
allowedCIDRBlocks: []
instanceType: t2.micro
ami: ''
ami: ""
# AWS machines parameters
amiID: ''
amiID: ""
imageLookup:
format: 'amzn2-ami-hvm*-gp2'
org: '137112412989'
baseOS: ''
format: "amzn2-ami-hvm*-gp2"
org: "137112412989"
baseOS: ""
iamInstanceProfile: control-plane.cluster-api-provider-aws.sigs.k8s.io
instanceType: ''
instanceType: ""
securityGroupIDs: []
rootVolumeSize: 8

Expand Down
2 changes: 1 addition & 1 deletion templates/cluster/aws-standalone-cp/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ version: 0.1.3
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: '1.30.4+k0s.0'
appVersion: "1.30.4+k0s.0"
annotations:
hmc.mirantis.com/infrastructure-providers: aws
hmc.mirantis.com/controlplane-providers: k0s
Expand Down
30 changes: 15 additions & 15 deletions templates/cluster/aws-standalone-cp/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,41 +5,41 @@ workersNumber: 2
clusterNetwork:
pods:
cidrBlocks:
- '10.244.0.0/16'
- "10.244.0.0/16"
services:
cidrBlocks:
- '10.96.0.0/12'
- "10.96.0.0/12"

# AWS cluster parameters
region: ''
sshKeyName: ''
region: ""
sshKeyName: ""
publicIP: false
bastion:
enabled: false
disableIngressRules: false
allowedCIDRBlocks: []
instanceType: t2.micro
ami: ''
ami: ""
# AWS machines parameters
controlPlane:
amiID: ''
amiID: ""
iamInstanceProfile: control-plane.cluster-api-provider-aws.sigs.k8s.io
instanceType: ''
instanceType: ""
rootVolumeSize: 8
imageLookup:
format: 'amzn2-ami-hvm*-gp2'
org: '137112412989'
baseOS: ''
format: "amzn2-ami-hvm*-gp2"
org: "137112412989"
baseOS: ""

worker:
amiID: ''
amiID: ""
iamInstanceProfile: control-plane.cluster-api-provider-aws.sigs.k8s.io
instanceType: ''
instanceType: ""
rootVolumeSize: 8
imageLookup:
format: 'amzn2-ami-hvm*-gp2'
org: '137112412989'
baseOS: ''
format: "amzn2-ami-hvm*-gp2"
org: "137112412989"
baseOS: ""

# K0s parameters
k0s:
Expand Down
2 changes: 1 addition & 1 deletion templates/provider/cluster-api-provider-aws/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ version: 0.1.2
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: '2.6.1'
appVersion: "2.6.1"
annotations:
hmc.mirantis.com/infrastructure-providers: aws
10 changes: 5 additions & 5 deletions templates/provider/hmc/values.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
nameOverride: ''
fullnameOverride: ''
nameOverride: ""
fullnameOverride: ""

admissionWebhook:
enabled: false
port: 9443
certDir: '/tmp/k8s-webhook-server/serving-certs/'
certDir: "/tmp/k8s-webhook-server/serving-certs/"

controller:
defaultRegistryURL: 'oci://ghcr.io/mirantis/hmc/charts'
registryCredsSecret: ''
defaultRegistryURL: "oci://ghcr.io/mirantis/hmc/charts"
registryCredsSecret: ""
insecureRegistry: false
createManagement: true
createTemplates: true
Expand Down

0 comments on commit 0572de9

Please sign in to comment.