In part 1, I setup the local Microk8s registry but treat it like a private registry. I was also able to build and deploy a containerized image to Microk8s. The resulting application doesn't work yet though and in the POD logs it indicated a problem with configuration.
The error is:
Can't read configMap with name: [starcases-sb-note] in namespace:[default]. Ignoring
In this particular case, that is a bit misleading. I have experienced a number of issues with similar results. The root of those issues tended to be one of:
- Firewall rules - there are some complexities related to IPTables vs NFTables and a few other items that can interact.
- Configuration mistakes or incomplete configuration for the kubernetes client portion. This commonly occurs when you specify IP addresses for resources that can/do change and you don't keep configuration in sync - usually this is something like the DB server.
- Overlapping / conflicting configuration between spring configuration files - application.properties and bootstrap.yaml, etc.
The easiest way to debug that was to start the application locally in Eclipse - at which point the console logs produced in Eclipse were clear about what was missing. I did try to do some mild debugging in the Microk8s cluster but the results were not clear and in fact had me looking at different issues.
So at this point, the cluster is up and the database and service are running. Here is snapshot of the system as a whole.
A quick interlude to describe some of data I'm working with and some process aspects. This "pet" project started with a simply greeting service. The goal I had for that was simply to work with multiple languages/locales. Using UTF-8, store variations of "Hi" from multiple languages in a DB table and associate each with a locale. I worked in multi-language environments a bit and always found it interesting. As Microservices and other ideas come up, I've wondered about alternative methods of handling things. I got distracted one day with that thought and found a dataset of country names where all countries were represented in a number of different languages. This happened to be a XLIFF 1.2 document. I ended up writing some code that allowed me to use it a bit like resource bundle - give a key and locale as parameters and get back the data in that target locale. Nothing fancy, but interesting. The challenge in my mind would be how to use it in a way that minimizes the chance of invalid keys showing up in "client code" over time.
Back to the database for a minute. Here is a quick image of that tables.
Note that databasechangelog and databasechangeloglock are related to Liquibase. The greet table is what I mentioned before. The notes and users tables are simply notes and user info - I'm in the process of integrating something like OAuth into the system so the users table could go away (the data would likely migrate to some other store). I'm still trying to evaluate a few packages in this area but that is a bit slow right now.
The spatial_ref_sys table exist because I went back and wanted to implement this on top of Postgis to potentially leverage the geographic support.
The globalterrorism table is a kaggle dataset that I imported into Postgres. I'm not sure whether I should have been surprised at the mild difficulties in getting that data imported. I did a bit of quick analysis on the data to determine types and such but even so I ran into some issues. I ended up installing a utility package which provided a csv stat feature that dumped information about each column after analyzing all rows and columns. This helped provide correct info to fix a number of items where columns had few values. Some of the data has latitude / longitude which fit in with my thought of Postgis.
Additionally, I started to toy with something called "Geoserver" which is used for working with mapping / spatial data. I'd like to tie all the items that I am working with together in some way. Maybe integrate a few more data sets related to food, education, crime, cost of living, terrorism and do some sort of "heat map" or other representation for areas with "fewer issues" and/or "more benefits". Anyways, it is just a learning experiment overall.
Ok, back from the interlude. Some notes on the service implementation side.
While I have the service running in Microk8s; I am also able to run it in Eclipse.
I probably should have returned a 204 response since I didn't return a body but for a quick test this was ok.
The controller looks like the following.
And an entity looking like this:
In parallel to this, I'm also implementing the same basic data/logic as a Quarkus application. That will be a post for another day.
So overall, things function. I with for better DNS integration which I will be trying to improve either through customization to CoreDNS config in Microk8s or via running Unbound locally. That is still in the research phase.
I'm starting a part 3 post with some additional details and notes. As I am going back through my code and setup, I am finding a few things to cleanup and a few things to change and document. I'll go into code a bit more and also configuration which is probably the hardest part to get done "well".
Have a blessed day!
Scott
- Microk8s v1.20.2
- SpringBoot 2.4.3
- SpringCloud 2020.0.1
- Eclipse JKube 1.1.1
- Java 11
- GraalVM 21.0.0
- Liquibase Maven plugin 4.2.0
- Eclipse 20-12 (4.18.0)
- Ubuntu 20.10
No comments:
Post a Comment