跳至主要内容

博文

目前显示的是标签为“cloud”的博文

一件关于 Native Compile 的小事

一直以来,Java程序的云原生部署都给人落后时代的感觉。 别人都是小型的Container, Java 需要个巨无霸的 JDK 捆绑。 别人都是死掉马上拉起服务,Java需要JVM前思后想左思又想的慢吞吞预热。 别人都是一个小小的配置,Java需要各种安全和系统级别的密钥仓库捆绑。 如此种种,直到有一天…… https://www.infoq.com/articles/native-compilations-boosts-java/

Learning terraform with OCI provider and Oracle always free tier

Provider: OCI https://www.terraform.io/docs/providers/oci/index.html Initial terraform plugins. Setup connection credentials as input variables, such various ocids, public keys etc. The way of using .tfvars file is deprecated. The way of configuring via SDK/CLI configuration file ~/.oci/config does not work. Shell variables work as expected. An exist oci resource, such as vcn, must be removed before always free configuration can be applied. OCI stacks is actually implemented with terraform. There's terraform specific functions in stack's detail panel. Such as terraform configuration download (as a zip), plan, apply, destroy. Long way to go as OCI api is rich and complex.