You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A utility container for simplified execution of imperative commands in each of the Validated Patterns.
6
+
7
+
## Overview
8
+
9
+
This container provides a pre-configured environment with all the necessary tools and dependencies for working with Validated Patterns. It includes Ansible, Kubernetes tools, cloud CLIs, and other utilities commonly needed for pattern deployment and management.
Just run: `make build` and both amd64 and arm64 will be built locally (you will need the qemu-user-static package installed)
99
+
## Troubleshooting
100
+
101
+
**Permission issues with volume mounts**
102
+
- Ensure the `--security-opt label=disable` flag is used when running the container.
103
+
- Check that your user has read/write access to the mounted directories.
104
+
105
+
**Network connectivity issues**
106
+
- Use `--net=host` for full network access.
107
+
- For restricted environments, configure appropriate network policies.
108
+
109
+
**Missing tools or outdated versions**
110
+
- Check the installed software table above for current versions.
111
+
- Consider building a custom image if you need different tool versions.
112
+
113
+
## Development
114
+
115
+
### Build the Image
116
+
117
+
Run `make build` to build both amd64 and arm64 architectures locally (requires qemu-user-static package).
118
+
119
+
### Upload to Registry
120
+
121
+
Run `make upload` to push the image to the official repository.
62
122
63
-
To upload the image to the official repository, run: `make UPLOADREGISTRY=quay.io/hybridcloudpatterns upload` (by default it uploads somewhere else
64
-
to try and avoid accidental uploads)
123
+
### Contributing
65
124
125
+
To update software versions or add new tools, modify the Containerfile and update the software table in this readme. Use `make versions` to generate the software versions table from the container after building locally.
0 commit comments