Kured is a Kubernetes daemonset that performs safe automatic node reboots when the need to do so is indicated by the package management system of the underlying OS. This should allow a full OS install, to be more like an appliance install like K3OS which is no longer being actively developed.
You can create snippets to add content to files in VSCode to put in boilerplate. In this example I’m using a snippet to create the frontmatter for a blogpost.
{ "Markdown FrontMatter": { "prefix": "eventFrontMatter", "body": [ "---", "title: $1", "date: $2", "author: L.J. Hanson", "tags: [$3]", "slug: $4", "description: $5", "draft: true", "---", "" ], "description": "Markdown FrontMatter" } }
To get Pelican style metadata working in Nikola you must add the markdown metadata extension to your config.
MARKDOWN_EXTENSIONS = [ "markdown.extensions.fenced_code", "markdown.extensions.codehilite", "markdown.extensions.extra", "markdown.extensions.meta", ]
Overall installtion instructions are here. Cert Manager was installed by Helm v3, with the custom resource definitions (CRD).
ClusterIssuer.yaml file sets up the connection to the CA (Let’s Encrypt) in order to generate certs. - Requires an IAM policy for Route53 and DNS challenges - yaml file must be updated with approriate values (at a minimum role, possibly accessKey and secret)
Splunk Components Indexer - Process, stores and creates events. Does this via time stamped directories. Search Head - Front End, consolidate and enrich results Forwarder - Agent that sends data to indexer These three represent the minimal install of splunk. Deployment Server Cluster Master License Master Roles Admin Can install apps, and create knowledge objects Power Can create and share knowledge objects for app users and do realtime searches. User Will only see own knowledge objects and those shared with them.
TODO: Subscribe to recommended keeping up to dates TODO: Buy/Read Securing DevOPS: Security in the Cloud
Most common security incidents
Public S3 buckets Leaked access keys Comprised IAM roles from EC2 allowing access to metadata service at 169.254.169.254
Command Description start Start Container stop Stops Container restart Restart Container kill Kill Container attach Attach terminal to running container exec Excutes command within a running container inspect Detail output about running container in JSON history Shows history of container image Dockerfile Commands
Command Reference FROM Base image, usually first WORKDIR Set’s working directory ADD Adds file from source to destination. Can be URL, Will Unzip COPY Copy from host machine.