-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Tests for New Operator Version (#117)
* Update python test app for new operator version * Update python test app * Update testing workflows * Fix Makefile issues by using 1 namespace like CI * Silence github security warnings in test app * Updating all agent helm charts to be similar * Bump tests * Add read only docker hub token for rate limits * Remove unnecessary line * Restore missing PHP annotation * Fix PHP app name * Drop cert-manager from make all * Remove secret dependency for Makefile * Automatically update helm repos * Add waits to PHP curl requests in CI * Add suggestions from code review
- Loading branch information
1 parent
92564f1
commit 3cc7b64
Showing
24 changed files
with
125 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
--- | ||
apiVersion: newrelic.com/v1alpha1 | ||
apiVersion: newrelic.com/v1alpha2 | ||
kind: Instrumentation | ||
metadata: | ||
labels: | ||
app.kubernetes.io/name: instrumentation | ||
app.kubernetes.io/created-by: newrelic-agent-operator | ||
name: newrelic-instrumentation | ||
name: newrelic-instrumentation-dotnet | ||
spec: | ||
dotnet: | ||
podLabelSelector: | ||
matchExpressions: | ||
- key: "app.newrelic.instrumentation" | ||
operator: "In" | ||
values: ["newrelic-dotnet-agent"] | ||
agent: | ||
language: dotnet | ||
image: e2e/newrelic-dotnet-init:e2e | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
scenarioTag: "" | ||
newRelicHost: "" | ||
newRelicHost: "" | ||
exposedPort: 80 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,4 +20,4 @@ | |
.project | ||
.idea/ | ||
*.tmproj | ||
.vscode/ | ||
.vscode/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
--- | ||
apiVersion: newrelic.com/v1alpha1 | ||
apiVersion: newrelic.com/v1alpha2 | ||
kind: Instrumentation | ||
metadata: | ||
labels: | ||
app.kubernetes.io/name: instrumentation | ||
app.kubernetes.io/created-by: newrelic-agent-operator | ||
name: newrelic-instrumentation | ||
name: newrelic-instrumentation-java | ||
spec: | ||
java: | ||
podLabelSelector: | ||
matchExpressions: | ||
- key: "app.newrelic.instrumentation" | ||
operator: "In" | ||
values: ["newrelic-java-agent"] | ||
agent: | ||
language: java | ||
image: e2e/newrelic-java-init:e2e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
scenarioTag: "" | ||
scenarioTag: "" | ||
exposedPort: 8080 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
scenarioTag: "" | ||
scenarioTag: "" | ||
exposedPort: 8000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
--- | ||
apiVersion: newrelic.com/v1alpha1 | ||
apiVersion: newrelic.com/v1alpha2 | ||
kind: Instrumentation | ||
metadata: | ||
labels: | ||
app.kubernetes.io/name: instrumentation | ||
app.kubernetes.io/created-by: newrelic-agent-operator | ||
name: newrelic-instrumentation | ||
name: newrelic-instrumentation-php | ||
spec: | ||
php: | ||
podLabelSelector: | ||
matchExpressions: | ||
- key: "app.newrelic.instrumentation" | ||
operator: "In" | ||
values: ["newrelic-php-agent"] | ||
agent: | ||
language: php | ||
image: e2e/newrelic-php-init:e2e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
scenarioTag: "" | ||
phpVersion: "" | ||
exposedPort: 8000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG RUNTIME_VERSION=3.7 | ||
ARG RUNTIME_VERSION=3.11 | ||
FROM python:$RUNTIME_VERSION | ||
|
||
# Install dependencies | ||
|
Oops, something went wrong.