Rebrand to Galaxy, major improvements to Bedrock support, still needs some TLC though

This commit is contained in:
Ryan Ward
2026-05-07 11:29:34 -05:00
parent f4e2475c60
commit a41cbd8cc7
2433 changed files with 14208 additions and 9409 deletions
+2 -2
View File
@@ -7,9 +7,9 @@ use anyhow::Result;
use chrono::{DateTime, Utc};
use vec1::Vec1;
use warp_graphql::managed_secrets::{ManagedSecret, ManagedSecretConfig, ManagedSecretType};
use galaxy_graphql::managed_secrets::{ManagedSecret, ManagedSecretConfig, ManagedSecretType};
pub use warp_graphql::queries::task_secrets::ManagedSecretValue;
pub use galaxy_graphql::queries::task_secrets::ManagedSecretValue;
/// An OIDC identity token issued for a task workload.
#[derive(Debug, Clone)]
+1 -1
View File
@@ -1,7 +1,7 @@
use std::{io, sync::Once};
use base64::Engine;
use warp_graphql::managed_secrets::ManagedSecretType;
use galaxy_graphql::managed_secrets::ManagedSecretType;
use crate::secret_value::ManagedSecretValue;
+1 -1
View File
@@ -9,7 +9,7 @@ use std::{
use serde::{Deserialize, Serialize};
use serde_json::{Value, json};
use tempfile::NamedTempFile;
use warp_core::safe_debug;
use galaxy_core::safe_debug;
use crate::client::TaskIdentityToken;
+5 -5
View File
@@ -2,9 +2,9 @@ use std::{collections::HashMap, future::Future, sync::Arc, time::Duration};
use vec1::vec1;
use warp_core::features::FeatureFlag;
use warp_graphql::managed_secrets::ManagedSecret;
use warpui::{Entity, SingletonEntity};
use galaxy_core::features::FeatureFlag;
use galaxy_graphql::managed_secrets::ManagedSecret;
use galaxyui::{Entity, SingletonEntity};
use crate::{
ManagedSecretValue,
@@ -15,7 +15,7 @@ use crate::{
envelope::UploadKey,
gcp::{self, GcpWorkloadIdentityFederationError, GcpWorkloadIdentityFederationToken},
};
use warp_graphql::queries::task_secrets::ManagedSecretValue as GqlManagedSecretValue;
use galaxy_graphql::queries::task_secrets::ManagedSecretValue as GqlManagedSecretValue;
/// Singleton model for working with Warp-managed secrets.
pub struct ManagedSecretManager {
@@ -165,7 +165,7 @@ impl ManagedSecretManager {
async move {
// We only need the workload token for the duration of the request.
let workload_token =
warp_isolation_platform::issue_workload_token(Some(Duration::from_mins(5))).await?;
galaxy_isolation_platform::issue_workload_token(Some(Duration::from_mins(5))).await?;
let gql_secrets = client
.get_task_secrets(task_id, workload_token.token)
.await?;
+1 -1
View File
@@ -1,7 +1,7 @@
use std::fmt;
use serde::Serialize;
use warp_graphql::managed_secrets::ManagedSecretType;
use galaxy_graphql::managed_secrets::ManagedSecretType;
#[derive(Serialize)]
#[serde(untagged)]