Poll an RSS Feed, and store the content as json file on an S3 bucket.
AWS Credentials are passed using k8s secrets and application.properties
is configured using ConfigMaps.
Replace the XXXX
with your credentials.
kubectl create secret generic aws \
--from-literal=ACCESS_KEY=XXXXXX \
--from-literal=SECRET_KEY=XXXXXX
kubectl apply -f config.yml
This will create a named rss-to-s3-configmap
ConfigMap.
kubectl apply -f rss-feed-to-s3.yml