In the last slide, we saw that nginx offers many different products via the default Helm Chart repository, but the nginx standalone web server is not one of them.
After a quick web search, we discover that there is a Chart for the nginx standalone web server available via the Bitnami Chart repository.
To add the Bitnami Chart repo to our local list of searchable charts:
helm repo add bitnami https://charts.bitnami.com/bitnami
Once that completes, we can search all Bitnami Charts:
helm search repo bitnami
Which results in:
Search once again for nginx
helm search repo nginx
Now we are seeing more nginx options, across both repositories:
Or even search the Bitnami repo, just for nginx:
helm search repo bitnami/nginx
Which narrows it down to nginx on Bitnami:
In both of those last two searches, we see
as a search result. That’s the one we’re looking for, so let’s use Helm to install it to the EKS cluster.