-
Notifications
You must be signed in to change notification settings - Fork 50
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 #245 from lhind-tia-cop/azure-secret-engine-role
add(): add CRD for AzureSecretEngineRole
- Loading branch information
Showing
18 changed files
with
1,015 additions
and
6 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,209 @@ | ||
/* | ||
Copyright 2021. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package v1alpha1 | ||
|
||
import ( | ||
"context" | ||
"reflect" | ||
|
||
vaultutils "github.com/redhat-cop/vault-config-operator/api/v1alpha1/utils" | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"sigs.k8s.io/controller-runtime/pkg/client" | ||
) | ||
|
||
// AzureSecretEngineRoleSpec defines the desired state of AzureSecretEngineRole | ||
type AzureSecretEngineRoleSpec struct { | ||
// Connection represents the information needed to connect to Vault. This operator uses the standard Vault environment variables to connect to Vault. If you need to override those settings and for example connect to a different Vault instance, you can do with this section of the CR. | ||
// +kubebuilder:validation:Optional | ||
Connection *vaultutils.VaultConnection `json:"connection,omitempty"` | ||
|
||
// Authentication is the kube auth configuraiton to be used to execute this request | ||
// +kubebuilder:validation:Required | ||
Authentication vaultutils.KubeAuthConfiguration `json:"authentication,omitempty"` | ||
|
||
// Path at which to make the configuration. | ||
// The final path in Vault will be {[spec.authentication.namespace]}/auth/{spec.path}/groups/{metadata.name}. | ||
// The authentication role must have the following capabilities = [ "create", "read", "update", "delete"] on that path. | ||
// +kubebuilder:validation:Required | ||
Path vaultutils.Path `json:"path,omitempty"` | ||
|
||
AzureSERole `json:",inline"` | ||
|
||
// The name of the object created in Vault. If this is specified it takes precedence over {metatada.name} | ||
// +kubebuilder:validation:Optional | ||
// +kubebuilder:validation:Pattern:=`[a-z0-9]([-a-z0-9]*[a-z0-9])?` | ||
Name string `json:"name,omitempty"` | ||
} | ||
|
||
// AzureSecretEngineRoleStatus defines the observed state of AzureSecretEngineRole | ||
type AzureSecretEngineRoleStatus struct { | ||
// +patchMergeKey=type | ||
// +patchStrategy=merge | ||
// +listType=map | ||
// +listMapKey=type | ||
Conditions []metav1.Condition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type"` | ||
} | ||
|
||
//+kubebuilder:object:root=true | ||
//+kubebuilder:subresource:status | ||
|
||
// AzureSecretEngineRole is the Schema for the azuresecretengineroles API | ||
type AzureSecretEngineRole struct { | ||
metav1.TypeMeta `json:",inline"` | ||
metav1.ObjectMeta `json:"metadata,omitempty"` | ||
|
||
Spec AzureSecretEngineRoleSpec `json:"spec,omitempty"` | ||
Status AzureSecretEngineRoleStatus `json:"status,omitempty"` | ||
} | ||
|
||
//+kubebuilder:object:root=true | ||
|
||
// AzureSecretEngineRoleList contains a list of AzureSecretEngineRole | ||
type AzureSecretEngineRoleList struct { | ||
metav1.TypeMeta `json:",inline"` | ||
metav1.ListMeta `json:"metadata,omitempty"` | ||
Items []AzureSecretEngineRole `json:"items"` | ||
} | ||
|
||
type AzureSERole struct { | ||
// List of Azure roles to be assigned to the generated service principal. | ||
// The array must be in JSON format, properly escaped as a string. See roles docs for details on role definition. | ||
// +kubebuilder:validation:Optional | ||
// +kubebuilder:default="" | ||
AzureRoles string `json:"azureRoles,omitempty"` | ||
|
||
// List of Azure groups that the generated service principal will be assigned to. | ||
// The array must be in JSON format, properly escaped as a string. See groups docs for more details. | ||
// +kubebuilder:validation:Optional | ||
// +kubebuilder:default="" | ||
AzureGroups string `json:"azureGroups,omitempty"` | ||
|
||
// Application Object ID for an existing service principal that will be used instead of creating dynamic service principals. | ||
// If present, azure_roles will be ignored. See roles docs for details on role definition. | ||
// +kubebuilder:validation:Optional | ||
// +kubebuilder:default="" | ||
ApplicationObjectID string `json:"applicationObjectID,omitempty"` | ||
|
||
// If set to true, persists the created service principal and application for the lifetime of the role. | ||
// Useful for when the Service Principal needs to maintain ownership of objects it creates | ||
// +kubebuilder:validation:Optional | ||
// +kubebuilder:default=false | ||
PersistApp bool `json:"persistApp"` | ||
|
||
// Specifies the default TTL for service principals generated using this role. | ||
// Accepts time suffixed strings ("1h") or an integer number of seconds. Defaults to the system/engine default TTL time. | ||
// +kubebuilder:validation:Optional | ||
// +kubebuilder:default="" | ||
TTL string `json:"TTL,omitempty"` | ||
|
||
// Specifies the maximum TTL for service principals generated using this role. | ||
// Accepts time suffixed strings ("1h") or an integer number of seconds. Defaults to the system/engine max TTL time. | ||
// +kubebuilder:validation:Optional | ||
// +kubebuilder:default="" | ||
MaxTTL string `json:"maxTTL,omitempty"` | ||
|
||
// Specifies whether to permanently delete Applications and Service Principals that are dynamically created by Vault. | ||
// If application_object_id is present, permanently_delete must be false. | ||
// +kubebuilder:validation:Optional | ||
// +kubebuilder:default="" | ||
PermanentlyDelete string `json:"permanentlyDelete,omitempty"` | ||
|
||
// Specifies the security principal types that are allowed to sign in to the application. | ||
// Valid values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. | ||
// +kubebuilder:validation:Optional | ||
// +kubebuilder:default="" | ||
SignInAudience string `json:"signInAudience,omitempty"` | ||
|
||
// A comma-separated string of Azure tags to attach to an application. | ||
// +kubebuilder:validation:Optional | ||
// +kubebuilder:default="" | ||
Tags string `json:"tags,omitempty"` | ||
} | ||
|
||
var _ vaultutils.VaultObject = &AzureSecretEngineRole{} | ||
var _ vaultutils.ConditionsAware = &AzureSecretEngineRole{} | ||
|
||
func init() { | ||
SchemeBuilder.Register(&AzureSecretEngineRole{}, &AzureSecretEngineRoleList{}) | ||
} | ||
|
||
func (r *AzureSecretEngineRole) GetKubeAuthConfiguration() *vaultutils.KubeAuthConfiguration { | ||
return &r.Spec.Authentication | ||
} | ||
|
||
func (d *AzureSecretEngineRole) GetPath() string { | ||
if d.Spec.Name != "" { | ||
return vaultutils.CleansePath(string(d.Spec.Path) + "/" + "roles" + "/" + d.Spec.Name) | ||
} | ||
return vaultutils.CleansePath(string(d.Spec.Path) + "/" + "roles" + "/" + d.Name) | ||
} | ||
|
||
func (d *AzureSecretEngineRole) GetPayload() map[string]interface{} { | ||
return d.Spec.toMap() | ||
} | ||
|
||
func (d *AzureSecretEngineRole) IsDeletable() bool { | ||
return true | ||
} | ||
|
||
func (d *AzureSecretEngineRole) GetVaultConnection() *vaultutils.VaultConnection { | ||
return d.Spec.Connection | ||
} | ||
|
||
func (d *AzureSecretEngineRole) IsEquivalentToDesiredState(payload map[string]interface{}) bool { | ||
desiredState := d.Spec.AzureSERole.toMap() | ||
return reflect.DeepEqual(desiredState, payload) | ||
} | ||
|
||
func (d *AzureSecretEngineRole) IsInitialized() bool { | ||
return true | ||
} | ||
|
||
func (r *AzureSecretEngineRole) IsValid() (bool, error) { | ||
return true, nil | ||
} | ||
|
||
func (d *AzureSecretEngineRole) PrepareInternalValues(context context.Context, object client.Object) error { | ||
return nil | ||
} | ||
|
||
func (d *AzureSecretEngineRole) PrepareTLSConfig(context context.Context, object client.Object) error { | ||
return nil | ||
} | ||
|
||
func (r *AzureSecretEngineRole) GetConditions() []metav1.Condition { | ||
return r.Status.Conditions | ||
} | ||
|
||
func (r *AzureSecretEngineRole) SetConditions(conditions []metav1.Condition) { | ||
r.Status.Conditions = conditions | ||
} | ||
|
||
func (i *AzureSERole) toMap() map[string]interface{} { | ||
payload := map[string]interface{}{} | ||
payload["azure_roles"] = i.AzureRoles | ||
payload["azure_groups"] = i.AzureGroups | ||
payload["application_object_id"] = i.ApplicationObjectID | ||
payload["persist_app"] = i.PersistApp | ||
payload["ttl"] = i.TTL | ||
payload["max_ttl"] = i.MaxTTL | ||
payload["permanently_delete"] = i.PermanentlyDelete | ||
payload["sign_in_audience"] = i.SignInAudience | ||
payload["tags"] = i.Tags | ||
|
||
return payload | ||
} |
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 |
---|---|---|
@@ -0,0 +1,73 @@ | ||
/* | ||
Copyright 2021. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package v1alpha1 | ||
|
||
import ( | ||
"errors" | ||
|
||
"k8s.io/apimachinery/pkg/runtime" | ||
ctrl "sigs.k8s.io/controller-runtime" | ||
logf "sigs.k8s.io/controller-runtime/pkg/log" | ||
"sigs.k8s.io/controller-runtime/pkg/webhook" | ||
"sigs.k8s.io/controller-runtime/pkg/webhook/admission" | ||
) | ||
|
||
// log is for logging in this package. | ||
var azuresecretenginerolelog = logf.Log.WithName("azuresecretenginerole-resource") | ||
|
||
func (r *AzureSecretEngineRole) SetupWebhookWithManager(mgr ctrl.Manager) error { | ||
return ctrl.NewWebhookManagedBy(mgr). | ||
For(r). | ||
Complete() | ||
} | ||
|
||
//+kubebuilder:webhook:path=/mutate-redhatcop-redhat-io-v1alpha1-azuresecretenginerole,mutating=true,failurePolicy=fail,sideEffects=None,groups=redhatcop.redhat.io,resources=azuresecretengineroles,verbs=create,versions=v1alpha1,name=mazuresecretenginerole.kb.io,admissionReviewVersions=v1 | ||
|
||
var _ webhook.Defaulter = &AzureSecretEngineRole{} | ||
|
||
// Default implements webhook.Defaulter so a webhook will be registered for the type | ||
func (r *AzureSecretEngineRole) Default() { | ||
azuresecretenginerolelog.Info("default", "name", r.Name) | ||
} | ||
|
||
//+kubebuilder:webhook:path=/validate-redhatcop-redhat-io-v1alpha1-azuresecretenginerole,mutating=false,failurePolicy=fail,sideEffects=None,groups=redhatcop.redhat.io,resources=azuresecretengineroles,verbs=update,versions=v1alpha1,name=vazuresecretenginerole.kb.io,admissionReviewVersions=v1 | ||
|
||
var _ webhook.Validator = &AzureSecretEngineRole{} | ||
|
||
// ValidateCreate implements webhook.Validator so a webhook will be registered for the type | ||
func (r *AzureSecretEngineRole) ValidateCreate() (admission.Warnings, error) { | ||
azuresecretenginerolelog.Info("validate create", "name", r.Name) | ||
|
||
return nil, nil | ||
} | ||
|
||
// ValidateUpdate implements webhook.Validator so a webhook will be registered for the type | ||
func (r *AzureSecretEngineRole) ValidateUpdate(old runtime.Object) (admission.Warnings, error) { | ||
azuresecretenginerolelog.Info("validate update", "name", r.Name) | ||
if r.Spec.Path != old.(*AzureSecretEngineRole).Spec.Path { | ||
return nil, errors.New("spec.path cannot be updated") | ||
} | ||
|
||
return nil, nil | ||
} | ||
|
||
// ValidateDelete implements webhook.Validator so a webhook will be registered for the type | ||
func (r *AzureSecretEngineRole) ValidateDelete() (admission.Warnings, error) { | ||
azuresecretenginerolelog.Info("validate delete", "name", r.Name) | ||
|
||
return nil, nil | ||
} |
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.