Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

Setting java.arg.2, java.arg.3 in kubernetes yaml

avatar
Expert Contributor

Is it possible to set bootstrap.conf properties(java.arg.2, java.arg.3) in kubernetes config yaml?

1 REPLY 1

avatar
Expert Contributor

@manishg 

  1. Define environment variables in your Kubernetes Deployment or Pod configuration YAML file.
  2. Assign values to these environment variables to represent the properties from your bootstrap.conf file (e.g., JAVA_ARG_2, JAVA_ARG_3).
  3. These environment variables will be accessible within your containerized application.
  4. Use these environment variables to set properties in your application's bootstrap process.
  5. Adjust the names and values of the environment variables according to your specific requirements and configurations.