March 2023 Summaries
4 posts from Coder
Filter
Month:
Year:
Post Summaries
Back to Blog
On September 24th, a Meetup is being hosted at Fly.io's Austin Office for those interested in attending or speaking. The event will cover deploying Coder on Fly.io and creating remote workspaces as Fly.io (firecracker) machines. Instructions are provided to log into Fly.io with the CLI, create a new fly postgres database, create a new fly app, connect to the database with the coder fly app, set up a secret for the connection string, update the fly.toml file, deploy the app, scale the Coder app to 1GB of memory, and use custom domains. Additionally, creating a template that uses a Fly.io machine as the workspace is discussed, along with instructions on installing Coder locally, logging in, creating a new template, pushing the new template, updating the Coder version, and modifying or writing coder templates.
Mar 22, 2023
617 words in the original blog post.
A Meetup is being hosted at the Austin Office on September 24th, 2024. Interested attendees or speakers are encouraged to reach out. Coder templates are crucial in creating workspaces by abstracting cloud environment complexities, allowing developers to focus on their projects. Templates can be organized based on teams, projects, or images. A template is a collection of settings used to create a workspace, while an image is a collection of software for the same purpose. Terraform variables manage choices in templates. To create Coder templates, users need to create a GitHub repository and follow specific steps using Terraform files. The next post will discuss how to keep templates up-to-date, and subscribers can stay updated by joining the Discord server or signing up for the newsletter.
Mar 15, 2023
605 words in the original blog post.
The text discusses a Meetup event at an Austin office, where participants can attend or speak. It also mentions a pulse survey project that uses AI for summarizing anonymous feedback. Pulse surveys are intended to gauge organizational health and employee issues on a frequent basis. Anonymity is believed to encourage honest responses. The author explains their experience with various HR tools and the decision to create an in-house pulse survey using existing communication platforms like Gmail, Slack, and Notion. They use OpenAI for summarizing feedback and share results openly in a company database.
Mar 07, 2023
355 words in the original blog post.
A tutorial is provided for setting up developer environments for Kubernetes projects using Coder. The tutorial covers creating a Coder template that provisions resources such as kubectl, helm, tilt, and other DevOps tools/home/coder volume to store projects and git repositories, and ServiceAccount with RoleBinding allowing the user to deploy additional resources within the namespace. It also explains how to create a persistent volume for developers to store their repos/files and connect via VS Code, SSH, or web terminal to deploy pods on the cluster. The tutorial assumes that Coder templates are written in Terraform and provides an example of a main.tf file with resource blocks for namespace, ServiceAccount, role binding, agent, app, pod, and persistent volume claim. It also includes metadata resources for icons and custom information about the namespace, pod, PVC, service account, and role binding. The tutorial concludes by encouraging developers to make changes to the template according to their project requirements and provides a link to the author's GitHub repository for a complete example of this template.
Mar 06, 2023
1,162 words in the original blog post.