use of io.stackgres.common.crd.sgbackup.StackGresBackup in project stackgres by ongres.
the class BackupDeployedResourceScanner method getDeployedResources.
@Override
public List<HasMetadata> getDeployedResources(StackGresBackup config) {
try (KubernetesClient client = clientFactory.create()) {
final Map<String, String> genericLabels = labelFactory.genericLabels(config);
Stream<HasMetadata> inNamespace = IN_NAMESPACE_RESOURCE_OPERATIONS.values().stream().flatMap(resourceOperationGetter -> resourceOperationGetter.apply(client).inNamespace(config.getMetadata().getNamespace()).withLabels(genericLabels).list().getItems().stream());
List<HasMetadata> deployedResources = inNamespace.filter(resource -> resource.getMetadata().getOwnerReferences().stream().anyMatch(ownerReference -> ownerReference.getKind().equals(StackGresBackup.KIND) && ownerReference.getName().equals(config.getMetadata().getName()) && ownerReference.getUid().equals(config.getMetadata().getUid()))).collect(Collectors.toUnmodifiableList());
deployedResources.forEach(resource -> {
Instance<DeployedResourceDecorator> decorator = decorators.select(new ReconciliationScopeLiteral(StackGresBackup.class, resource.getKind()));
if (decorator.isResolvable()) {
decorator.get().decorate(resource);
}
});
return deployedResources;
}
}
use of io.stackgres.common.crd.sgbackup.StackGresBackup in project stackgres by ongres.
the class RestoreConfigValidator method checkBackup.
private void checkBackup(StackGresClusterReview review, StackGresClusterRestore restoreConfig) throws ValidationFailed {
String backupUid = restoreConfig.getFromBackup().getUid();
switch(review.getRequest().getOperation()) {
case CREATE:
Optional<StackGresBackup> config = findBackup(backupUid);
if (config.isEmpty()) {
final String message = "Backup uid " + backupUid + " not found";
fail(errorCrReferencerUri, message);
}
StackGresBackup backup = config.get();
final StackGresBackupProcess process = backup.getStatus().getProcess();
if (backup.getStatus() == null || !process.getStatus().equals("Completed")) {
final String message = "Cannot restore from backup " + backupUid + " because it's not ready";
fail(errorCrReferencerUri, message);
}
String backupMajorVersion = RestoreConfigValidator.getMajorVersion(backup);
String givenPgVersion = review.getRequest().getObject().getSpec().getPostgres().getVersion();
String givenMajorVersion = StackGresComponent.POSTGRESQL.findMajorVersion(givenPgVersion);
if (!backupMajorVersion.equals(givenMajorVersion)) {
final String message = "Cannot restore from backup " + backupUid + " because it comes from an incompatible postgres version";
fail(errorPostgresMismatch, message);
}
break;
case UPDATE:
StackGresClusterRestore oldRestoreConfig = review.getRequest().getOldObject().getSpec().getInitData().getRestore();
String oldBackupUid = oldRestoreConfig.getFromBackup().getUid();
final String message = "Cannot update cluster's restore configuration";
if (backupUid == null && oldBackupUid != null || backupUid != null && oldBackupUid == null) {
fail(errorCrReferencerUri, message);
}
if (backupUid != null && !backupUid.equals(oldBackupUid)) {
fail(errorCrReferencerUri, message);
}
break;
default:
}
}
use of io.stackgres.common.crd.sgbackup.StackGresBackup in project stackgres by ongres.
the class BackupJob method createBackupJob.
private HasMetadata createBackupJob(StackGresBackupContext context) {
StackGresBackup backup = context.getSource();
StackGresBackupConfig backupConfig = context.getBackupConfig();
String namespace = backup.getMetadata().getNamespace();
String name = backup.getMetadata().getName();
String cluster = backup.getSpec().getSgCluster();
Map<String, String> labels = labelFactory.backupPodLabels(context.getSource());
final VolumeMount utilsVolumeMount = ClusterStatefulSetVolumeConfig.TEMPLATES.volumeMount(context, volumeMountBuilder -> volumeMountBuilder.withSubPath(ClusterStatefulSetPath.LOCAL_BIN_SHELL_UTILS_PATH.filename()).withMountPath(ClusterStatefulSetPath.LOCAL_BIN_SHELL_UTILS_PATH.path()).withReadOnly(true));
final VolumeMount backupVolumeMount = ClusterStatefulSetVolumeConfig.TEMPLATES.volumeMount(context, volumeMountBuilder -> volumeMountBuilder.withSubPath(ClusterStatefulSetPath.LOCAL_BIN_CREATE_BACKUP_SH_PATH.filename()).withMountPath(ClusterStatefulSetPath.LOCAL_BIN_CREATE_BACKUP_SH_PATH.path()).withReadOnly(true));
return new JobBuilder().withNewMetadata().withNamespace(namespace).withName(backupJobName(backup)).withLabels(labels).endMetadata().withNewSpec().withBackoffLimit(3).withCompletions(1).withParallelism(1).withNewTemplate().withNewMetadata().withNamespace(namespace).withName(backupJobName(backup)).withLabels(labels).endMetadata().withNewSpec().withSecurityContext(podSecurityFactory.createResource(context)).withRestartPolicy("OnFailure").withServiceAccountName(PatroniRoleGenerator.roleName(context)).withContainers(new ContainerBuilder().withName("create-backup").withImage(StackGresComponent.KUBECTL.findLatestImageName()).withImagePullPolicy("IfNotPresent").withEnv(ImmutableList.<EnvVar>builder().addAll(getClusterEnvVars(context)).add(new EnvVarBuilder().withName("CLUSTER_NAMESPACE").withValue(namespace).build(), new EnvVarBuilder().withName("BACKUP_NAME").withValue(name).build(), new EnvVarBuilder().withName("CLUSTER_NAME").withValue(cluster).build(), new EnvVarBuilder().withName("CRONJOB_NAME").withValue(cluster + StackGresUtil.BACKUP_SUFFIX).build(), new EnvVarBuilder().withName("BACKUP_IS_PERMANENT").withValue(Optional.ofNullable(backup.getSpec().getManagedLifecycle()).map(managedLifecycle -> !managedLifecycle).map(String::valueOf).orElse("true")).build(), new EnvVarBuilder().withName("BACKUP_CONFIG_CRD_NAME").withValue(CustomResource.getCRDName(StackGresBackupConfig.class)).build(), new EnvVarBuilder().withName("BACKUP_CONFIG").withValue(backupConfig.getMetadata().getName()).build(), new EnvVarBuilder().withName("BACKUP_CRD_KIND").withValue(HasMetadata.getKind(StackGresBackup.class)).build(), new EnvVarBuilder().withName("BACKUP_CRD_NAME").withValue(CustomResource.getCRDName(StackGresBackup.class)).build(), new EnvVarBuilder().withName("BACKUP_CRD_APIVERSION").withValue(HasMetadata.getApiVersion(StackGresBackup.class)).build(), new EnvVarBuilder().withName("BACKUP_PHASE_RUNNING").withValue(BackupPhase.RUNNING.label()).build(), new EnvVarBuilder().withName("BACKUP_PHASE_COMPLETED").withValue(BackupPhase.COMPLETED.label()).build(), new EnvVarBuilder().withName("BACKUP_PHASE_FAILED").withValue(BackupPhase.FAILED.label()).build(), new EnvVarBuilder().withName("PATRONI_ROLE_KEY").withValue(StackGresContext.ROLE_KEY).build(), new EnvVarBuilder().withName("PATRONI_PRIMARY_ROLE").withValue(StackGresContext.PRIMARY_ROLE).build(), new EnvVarBuilder().withName("PATRONI_REPLICA_ROLE").withValue(StackGresContext.REPLICA_ROLE).build(), new EnvVarBuilder().withName("PATRONI_CLUSTER_LABELS").withValue(labelFactoryForCluster.patroniClusterLabels(context.getCluster()).entrySet().stream().map(e -> e.getKey() + "=" + e.getValue()).collect(Collectors.joining(","))).build(), new EnvVarBuilder().withName("PATRONI_CONTAINER_NAME").withValue(StackgresClusterContainers.PATRONI).build(), new EnvVarBuilder().withName("SERVICE_ACCOUNT").withValueFrom(new EnvVarSourceBuilder().withFieldRef(new ObjectFieldSelectorBuilder().withFieldPath("spec.serviceAccountName").build()).build()).build(), new EnvVarBuilder().withName("POD_NAME").withValueFrom(new EnvVarSourceBuilder().withFieldRef(new ObjectFieldSelectorBuilder().withFieldPath("metadata.name").build()).build()).build(), new EnvVarBuilder().withName("RETAIN").withValue(Optional.of(backupConfig.getSpec()).map(StackGresBackupConfigSpec::getBaseBackups).map(StackGresBaseBackupConfig::getRetention).map(String::valueOf).orElse("5")).build(), new EnvVarBuilder().withName("WINDOW").withValue("3600").build()).build()).withCommand("/bin/bash", "-e" + (LOGGER.isTraceEnabled() ? "x" : ""), ClusterStatefulSetPath.LOCAL_BIN_CREATE_BACKUP_SH_PATH.path()).withVolumeMounts(backupVolumeMount, utilsVolumeMount).build()).withVolumes(new VolumeBuilder(ClusterStatefulSetVolumeConfig.TEMPLATES.volume(context)).editConfigMap().withDefaultMode(// NOPMD
0555).endConfigMap().build()).endSpec().endTemplate().endSpec().build();
}
Aggregations