Search in sources :

Example 1 with AzureBlobStorageCredentials

use of io.stackgres.common.crd.storages.AzureBlobStorageCredentials in project stackgres by ongres.

the class BackupConfigSourceValidatorTest method setAzureBlobCredentials.

private void setAzureBlobCredentials(final BackupConfigReview review, String accountName, String accountKey, String accessKeyName, String accessKeyKey) {
    BackupStorage storage = review.getRequest().getObject().getSpec().getStorage();
    storage.setType("azureblob");
    storage.setAzureBlob(new AzureBlobStorage());
    storage.getAzureBlob().setAzureCredentials(new AzureBlobStorageCredentials());
    storage.getAzureBlob().getAzureCredentials().setSecretKeySelectors(new AzureBlobSecretKeySelector());
    AzureBlobSecretKeySelector azureBlobSecretKeySelector = storage.getAzureBlob().getAzureCredentials().getSecretKeySelectors();
    azureBlobSecretKeySelector.setAccount(new SecretKeySelector(accountKey, accountName));
    azureBlobSecretKeySelector.setAccessKey(new SecretKeySelector(accessKeyKey, accessKeyName));
}
Also used : AzureBlobSecretKeySelector(io.stackgres.common.crd.storages.AzureBlobSecretKeySelector) BackupStorage(io.stackgres.common.crd.storages.BackupStorage) AzureBlobStorageCredentials(io.stackgres.common.crd.storages.AzureBlobStorageCredentials) SecretKeySelector(io.stackgres.common.crd.SecretKeySelector) AzureBlobSecretKeySelector(io.stackgres.common.crd.storages.AzureBlobSecretKeySelector) AwsSecretKeySelector(io.stackgres.common.crd.storages.AwsSecretKeySelector) GoogleCloudSecretKeySelector(io.stackgres.common.crd.storages.GoogleCloudSecretKeySelector) AzureBlobStorage(io.stackgres.common.crd.storages.AzureBlobStorage)

Example 2 with AzureBlobStorageCredentials

use of io.stackgres.common.crd.storages.AzureBlobStorageCredentials in project stackgres by ongres.

the class BackupConfigStorageValidator method validate.

@Override
public void validate(BackupConfigReview review) throws ValidationFailed {
    Operation operation = review.getRequest().getOperation();
    if (operation == Operation.CREATE || operation == Operation.UPDATE) {
        String namespace = review.getRequest().getObject().getMetadata().getNamespace();
        String storageType = review.getRequest().getObject().getSpec().getStorage().getType();
        if (storageType.equals("s3") && review.getRequest().getObject().getSpec().getStorage().getS3() != null) {
            AwsCredentials credentials = review.getRequest().getObject().getSpec().getStorage().getS3().getAwsCredentials();
            checkSecret(namespace, storageType, "accessKeyId", credentials.getSecretKeySelectors().getAccessKeyId());
            checkSecret(namespace, storageType, "secretAccessKey", credentials.getSecretKeySelectors().getSecretAccessKey());
        }
        if (storageType.equals("s3compatible") && review.getRequest().getObject().getSpec().getStorage().getS3Compatible() != null) {
            AwsCredentials credentials = review.getRequest().getObject().getSpec().getStorage().getS3Compatible().getAwsCredentials();
            checkSecret(namespace, storageType, "accessKeyId", credentials.getSecretKeySelectors().getAccessKeyId());
            checkSecret(namespace, storageType, "secretAccessKey", credentials.getSecretKeySelectors().getSecretAccessKey());
        }
        if (storageType.equals("azureblob") && review.getRequest().getObject().getSpec().getStorage().getAzureBlob() != null) {
            AzureBlobStorageCredentials credentials = review.getRequest().getObject().getSpec().getStorage().getAzureBlob().getAzureCredentials();
            checkSecret(namespace, storageType, "account", credentials.getSecretKeySelectors().getAccount());
            checkSecret(namespace, storageType, "accessKey", credentials.getSecretKeySelectors().getAccessKey());
        }
        if (storageType.equals("gcs") && review.getRequest().getObject().getSpec().getStorage().getGcs() != null && review.getRequest().getObject().getSpec().getStorage().getGcs().getCredentials().getSecretKeySelectors() != null) {
            GoogleCloudCredentials credentials = review.getRequest().getObject().getSpec().getStorage().getGcs().getCredentials();
            checkSecret(namespace, storageType, "serviceAccountJsonKey", credentials.getSecretKeySelectors().getServiceAccountJsonKey());
        }
    }
}
Also used : GoogleCloudCredentials(io.stackgres.common.crd.storages.GoogleCloudCredentials) AwsCredentials(io.stackgres.common.crd.storages.AwsCredentials) AzureBlobStorageCredentials(io.stackgres.common.crd.storages.AzureBlobStorageCredentials) Operation(io.stackgres.operatorframework.admissionwebhook.Operation)

Aggregations

AzureBlobStorageCredentials (io.stackgres.common.crd.storages.AzureBlobStorageCredentials)2 SecretKeySelector (io.stackgres.common.crd.SecretKeySelector)1 AwsCredentials (io.stackgres.common.crd.storages.AwsCredentials)1 AwsSecretKeySelector (io.stackgres.common.crd.storages.AwsSecretKeySelector)1 AzureBlobSecretKeySelector (io.stackgres.common.crd.storages.AzureBlobSecretKeySelector)1 AzureBlobStorage (io.stackgres.common.crd.storages.AzureBlobStorage)1 BackupStorage (io.stackgres.common.crd.storages.BackupStorage)1 GoogleCloudCredentials (io.stackgres.common.crd.storages.GoogleCloudCredentials)1 GoogleCloudSecretKeySelector (io.stackgres.common.crd.storages.GoogleCloudSecretKeySelector)1 Operation (io.stackgres.operatorframework.admissionwebhook.Operation)1