Skip to content

Commit

Permalink
Remove old agent in Contributing and Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien-Ben committed Nov 16, 2023
1 parent 09d6416 commit acf1997
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,6 @@ e2e-image: ## Build and push e2e test image
python pipeline.py --image-name e2e

agent-image: ## Build and push agent image
python pipeline.py --image-name agent-ubuntu
python pipeline.py --image-name agent

readiness-probe-image: ## Build and push readiness probe image
Expand Down
9 changes: 3 additions & 6 deletions docs/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,7 @@ to be able to run properly. Create a json file with the following content:
"operator_image": "mongodb-kubernetes-operator",
"e2e_image": "community-operator-e2e",
"version_upgrade_hook_image": "community-operator-version-upgrade-post-start-hook",
"agent_image_ubuntu": "mongodb-agent-dev",
"agent_image_ubi": "mongodb-agent-ubi-dev",
"agent_image": "mongodb-agent-ubi-dev",
"readiness_probe_image": "mongodb-kubernetes-readiness",
"s3_bucket": ""
}
Expand All @@ -73,10 +72,8 @@ to be able to run properly. Create a json file with the following content:
3. `operator_image` will be used as the name of the operator deployment, and the name of the operator image when build.
4. `e2e_image` the name of e2e test image that will be built.
5. `version_upgrade_hook_image` the name of the version upgrade post start hook image.
6. `image_type` this can be either `ubi` or `ubuntu` and determines the distro of the images built. (currently only the agent image has multiple distros)
7. `agent_image_ubuntu` the name of the ubuntu agent image.
8. `agent_image_ubi` the name of the ubi agent image.
9. `s3_bucket` the S3 bucket that Dockerfiles will be pushed to as part of the release process. Note: this is only required when running the release tasks locally.
6. `agent_image` the name of the agent image.
7. `s3_bucket` the S3 bucket that Dockerfiles will be pushed to as part of the release process. Note: this is only required when running the release tasks locally.


You can set the `MONGODB_COMMUNITY_CONFIG` environment variable to be the absolute path of this file.
Expand Down

0 comments on commit acf1997

Please sign in to comment.