Skip to content

Latest commit

 

History

History

rss-feed-to-s3-json

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

RSS Feed to Json File on S3 bucket

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.

Create the AWS Secrets

Replace the XXXX with your credentials.

kubectl create secret generic aws \
--from-literal=ACCESS_KEY=XXXXXX \
--from-literal=SECRET_KEY=XXXXXX

Create the configmap

kubectl apply -f config.yml

This will create a named rss-to-s3-configmap ConfigMap.

Run the integration

kubectl apply -f rss-feed-to-s3.yml