Skip to content

Commit ed278f9

Browse files
committed
review comments with cleanup + small fixes
Tool: gitpod/catfood.gitpod.cloud
1 parent f885c5e commit ed278f9

File tree

3 files changed

+3
-21
lines changed

3 files changed

+3
-21
lines changed

components/dashboard/src/repositories/detail/variables/EnableDockerdAuthentication.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export const EnableDockerdAuthentication: FC<Props> = ({ configuration }) => {
5555
<code>GITPOD_IMAGE_AUTH</code> environment variable.
5656
</span>
5757

58-
<Alert type={"warning"} closable={false} showIcon={true} className="flex rounded p-2 w-2/3 mb-2 w-full">
58+
<Alert type={"warning"} closable={false} showIcon={true} className="flex rounded p-2 mb-2 w-full">
5959
By enabling this, credentials specified in <code>GITPOD_IMAGE_AUTH</code> will be visible inside all
6060
workspaces on this project.
6161
</Alert>

components/server/src/workspace/workspace-starter.ts

+1-19
Original file line numberDiff line numberDiff line change
@@ -211,14 +211,6 @@ export function isClusterMaintenanceError(err: any): boolean {
211211
);
212212
}
213213

214-
/**
215-
* Context for creating the actual workspace spec.
216-
* This is meant to help make the actual spec generation stateless and testable.
217-
*/
218-
interface CreateSpecContext {
219-
project?: Project;
220-
}
221-
222214
@injectable()
223215
export class WorkspaceStarter {
224216
static readonly STARTING_PHASES: WorkspaceInstancePhase[] = ["preparing", "building", "pending"];
@@ -653,8 +645,7 @@ export class WorkspaceStarter {
653645
);
654646

655647
// create spec
656-
const specCtx = await this.getCreateSpecContext(user, workspace);
657-
const spec = await this.createSpec({ span }, specCtx, user, workspace, instance, envVars);
648+
const spec = await this.createSpec({ span }, user, workspace, instance, envVars);
658649

659650
// create start workspace request
660651
const metadata = await this.createMetadata(workspace);
@@ -1379,7 +1370,6 @@ export class WorkspaceStarter {
13791370

13801371
private async createSpec(
13811372
traceCtx: TraceContext,
1382-
specCtx: CreateSpecContext,
13831373
user: User,
13841374
workspace: Workspace,
13851375
instance: WorkspaceInstance,
@@ -1998,14 +1988,6 @@ export class WorkspaceStarter {
19981988
};
19991989
}
20001990

2001-
private async getCreateSpecContext(user: User, workspace: Workspace): Promise<CreateSpecContext> {
2002-
let project: Project | undefined;
2003-
if (workspace.projectId) {
2004-
project = await this.projectService.getProject(user.id, workspace.projectId, true);
2005-
}
2006-
return { project };
2007-
}
2008-
20091991
private toWorkspaceFeatureFlags(featureFlags: NamedWorkspaceFeatureFlag[]): WorkspaceFeatureFlag[] {
20101992
const result = featureFlags
20111993
.map((name) => {

components/supervisor/pkg/supervisor/docker.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ func insertCredentialsIntoConfig(imageAuth string) (int, error) {
318318
continue
319319
}
320320
host := parts[0]
321-
if strings.Contains(host, "docker.io") {
321+
if host == "docker.io" || strings.HasSuffix(host, ".docker.io") {
322322
host = "https://index.docker.io/v1/"
323323
}
324324

0 commit comments

Comments
 (0)