-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #222 from hardikdr/cmi-client
Remove foot prints of provider-specific machineclasses
- Loading branch information
Showing
1,103 changed files
with
29,970 additions
and
298,271 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,7 +47,7 @@ start: | |
|
||
.PHONY: revendor | ||
revendor: | ||
@dep ensure -update | ||
@dep ensure -update -v | ||
|
||
.PHONY: build | ||
build: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# Sample GCP machine class | ||
|
||
apiVersion: machine.sapcloud.io/v1alpha1 # API version of object | ||
kind: GCPMachineClass # Machine Class Kind | ||
apiVersion: machine.sapcloud.io/v1alpha1 | ||
kind: MachineClass | ||
metadata: | ||
name: test-gcp # Name of GCP machine class goes here | ||
namespace: default # Namespace in which the machine class is to be deployed | ||
spec: | ||
providerSpec: | ||
canIpForward: true # Allows this instance to send and receive packets with non-matching destination or source IPs | ||
deletionProtection: false # DeletionProtection: Whether the resource should be protected against deletion | ||
description: An optional description for machines created by that class. # Description of this resource | ||
|
@@ -30,9 +30,6 @@ spec: | |
automaticRestart: true # Automatic restart of instance | ||
onHostMaintenance: MIGRATE # Host maintainance | ||
preemptible: false # Instance is premeptiable | ||
secretRef: # Kubernetes secret containing values for provider secrets and user-data | ||
name: "test-secret" # Name of the secret | ||
namespace: "default" # Namespace of secret | ||
serviceAccounts: | ||
- email: [email protected] # Service account email | ||
scopes: # List of scopes | ||
|
@@ -44,3 +41,7 @@ spec: | |
- key2 # A set of additional tags attached to a machine (optional) | ||
region: europe-west1 # Region to attach the instance | ||
zone: europe-west1-b # Zone to attach the instance | ||
secretRef: # Kubernetes secret containing values for provider secrets and user-data | ||
name: "test-secret" # Name of the secret | ||
namespace: "default" # Namespace of secret | ||
provider: gcpdriver//127.0.0.1:8080 # Provider information of gRPC driver. Default: grpc-default-driver//127.0.0.1:8080 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.