Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use Pull through cache #763

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package mutatedbyadmissioncontroller

import (
"fmt"

"github.com/DataDog/test-infra-definitions/common/config"

componentskube "github.com/DataDog/test-infra-definitions/components/kubernetes"
Expand Down Expand Up @@ -131,7 +133,7 @@ func k8sDeploymentWithLibInjection(e config.CommonEnvironment, namespace string,
corev1.ContainerArgs{
Name: pulumi.String(name),
// Python is one of the languages supported by APM lib injection
Image: pulumi.String("python:3.12-slim"),
Image: pulumi.String(fmt.Sprintf("%s/library/python:3.12-slim", e.CloudProviderEnvironment.InternalRegistry())),
Command: pulumi.ToStringArray([]string{
"python", "-c", "while True: import time; time.sleep(60)",
}),
Expand Down
Loading