投稿時間:2022-05-04 08:12:24 RSSフィード2022-05-04 08:00 分まとめ(14件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] 伝説の車両「7000系」は、いまどうなっているのか https://www.itmedia.co.jp/business/articles/2205/04/news024.html itmedia 2022-05-04 07:20:00
AWS AWS Learn How Real Businesses Unlock New Possibilities with Cloud | Amazon Web Services https://www.youtube.com/watch?v=QJGQH2bk-TY Learn How Real Businesses Unlock New Possibilities with Cloud Amazon Web ServicesFor small and medium sized businesses remaining competitive can be a daunting task especially against the backdrop of limited resources supply chain challenges evolving compliance and security regulations and increasing customer expectations Amazon Web Services AWS offers a simple trusted and secure cloud for businesses of any size AWS provides solutions for improved scalability security efficiency and productivity Watch the video to hear from real AWS customers about how they leverage the AWS breadth of services and support to affordability achieve their goals faster and unlock new possibilities for their businesses Learn more about the benefits of the cloud for small and medium sized companies Discover the best cloud solution for your business Subscribe More AWS videos More AWS events videos ABOUT AWSAmazon Web Services AWS is the world s most comprehensive and broadly adopted cloud platform offering over fully featured services from data centers globally Millions of customers ーincluding the fastest growing startups largest enterprises and leading government agencies ーare using AWS to lower costs become more agile and innovate faster SmallMediumBusiness AWS AmazonWebServices CloudComputing 2022-05-03 22:08:25
海外TECH Ars Technica BA.2.12.1 poised to become dominant in US, raising concern for future vaccines https://arstechnica.com/?p=1852038 future 2022-05-03 22:05:39
海外TECH DEV Community Deploying PostgreSQL in a Local Kubernetes Cluster https://dev.to/otomato_io/deploying-postgresql-in-a-local-kubernetes-cluster-230n Deploying PostgreSQL in a Local Kubernetes ClusterIn this article the author will not explain why all these manipulations are needed or discuss the advantages and disadvantages of this solution He hopes readers are smart enough Think of this article as a continuation of the persistent volumes story and as a guide for deploying a database in a local Kubernetes dev cluster IntroductionThree main stages can be distinguished Creation of PersistentVolume PV and PersistentVolumeClaim PVC what a surpise we need a stateful app Setting the Helm chart of the target application Checking that everything is working Before starting work we need to minimally configure the Kubernetes cluster Here are the small requirements The actual version of Kubernetes v One master node and one worker node The configured Ingress controller helm is installed on the dev s machine As you may know already the author prefers to use ks kd as his local Kubernetes development stage Storage preparationWhen dealing with ks you have to enable so called local path provisoner first Create directory that s needed by local provisioner i e mkdir opt local path provisionerInstall the provisioner kubectl apply f Set the local path provisioner as default kubectl patch storageclass local path p metadata annotations storageclass kubernetes io is default class true Check the fact provisioner is running kubectl namespace kube system get pod NAME READY STATUS RESTARTS AGE local path provisioner bb tmpht Running From this moment we can create a PersistentVolume and PersistentVolumeClaim resources for our dedicated storage space To do this paste the following manifest into the pv yaml file apiVersion vkind PersistentVolumemetadata name pv for pg labels type localspec capacity storage Gi volumeMode Filesystem accessModes ReadWriteOnce persistentVolumeReclaimPolicy Retain storageClassName local path hostPath path opt local path provisioner nodeAffinity required nodeSelectorTerms matchExpressions key kubernetes io hostname operator In values kd my cluster agent kind PersistentVolumeClaimapiVersion vmetadata name pg pvcspec storageClassName local path accessModes ReadWriteOnce resources requests storage GiIn matchExpressions field we specify the name of the node on which the disk will be mounted should be our worker node kd my cluster agent here For convenience we will mount the disk immediately on the master node although this can be done on any of those available in the list We will mount volume on the opt local path provisioner directory created earlier See the result kubectl apply f pvc yaml persistentvolume pv for pg createdpersistentvolumeclaim pg pvc createdGood Let s check promoted PersistentVolumeClaim s state kubectl get pvcNAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS AGEpg pvc Bound pv for pg Gi RWO local path msAs we may see the PersistentVolumeClaim resource is bound Installing PostgreSQLNow is the time to deploy Postgres on a cluster Just at this stage we already need helm We pull the Bitnami repository to ourselves they are kind and great they have a lot of useful ready made charts there in their k repository helm repo add bitnami bitnami has been added to your repositoriesProceed with helm install helm install dev pg bitnami postgresql set primary persistence existingClaim pg pvc auth postgresPassword pgpass volumePermissions enabled trueNAME dev pgLAST DEPLOYED Tue May NAMESPACE defaultSTATUS deployedREVISION ️Due to an on going issue regarding kubernetes permissions and the use of containerSecurityContext runAsUser you must enable volumePermissions to ensure everything works as expected Drums are ticking From now the Postgres Pod will capable to write data to the opt local path provisioner directory Let s look at the state of the Pod and StatefulSet kubectl get pod statefulsetNAME READY STATUS RESTARTS AGEpod dev pg postgresql Running mNAME READY AGEstatefulset apps dev pg postgresql hCheck the version kubectl logs tail dev pg postgresql grep starting LOG starting PostgreSQL on x pc linux gnu compiled by gcc Debian bitGreat job Communicating with the databaseThe database has been successfully deployed now let s try to connect to it create a user a table and configure access credentials There are two major ways to communicate with DB Port forwarding Involving Pod with client tool onboard Port forwardingWe ll need the psql utility note in some cases PgSQL PPA repo should be added the author uses Ubuntu Focal sudo apt install postgresql client Let s export the password from the admin user to an environment variable export POSTGRES PASSWORD kubectl get secret namespace default dev pg postgresql o jsonpath data postgres password base decode Perform port forwarding Keep in mind the current console will be locked after executing the command kubectl port forward namespace default svc dev pg postgresql Or you may open a separate console export KUBECONFIG kd kubeconfig write my cluster kubectl port forward namespace default svc dev pg postgresql Now connect to database PGPASSWORD POSTGRES PASSWORD psql host U postgres d postgres p psql Ubuntu pgdg b Type help for help postgres Involving Pod with client tool onboardExport the password from the admin user to an environment variable export POSTGRES PASSWORD kubectl get secret namespace default dev pg postgresql o jsonpath data postgres password base decode Then let s create a Pod with the psql utility onboard and execute the command to connect to the database in it kubectl run dev pg postgresql client rm tty i restart Never namespace default image docker io bitnami postgresql debian r env PGPASSWORD POSTGRES PASSWORD gt command psql host dev pg postgresql U postgres d postgres p If you don t see a command prompt try pressing enter postgres Let s list roles to ensure we re in touch postgres du List of roles Role name Attributes Member of postgres Superuser Create role Create DB Replication Bypass RLS postgres That s it guys We have deployed a working database in a cluster it also saves its state it is stateful database here To be continued 2022-05-03 22:29:16
海外TECH DEV Community "Deploying Elixir: Advanced Topics" eBook https://dev.to/miguelcoba/deploying-elixir-advanced-topics-ebook-1moa quot Deploying Elixir Advanced Topics quot eBookI have written a new Elixir book Deploying Elixir Advanced TopicsIt is based on the feedback and suggestions I got from the readers of my previous book Deploying Elixir They asked me to write more about clustering in Elixir and deploying to Kubernetes I ll take you from zero to deploying a Kubernetes cluster in the three big Cloud Providers In this book I ll show you how to create an Elixir Release from your application and Dockerize itLearn what an Erlang cluster is and how to create oneWe explore the different strategies to create clusters using the libcluster libraryI ll show you how to deploy it to a Kubernetes cluster using minikubeWhen you feel comfortable scaling your app I ll show you how to deploy to Amazon Web Service Microsoft Azure and Google Cloud PlatformGet it here Deploying Elixir Advanced Topics 2022-05-03 22:19:57
海外TECH DEV Community Using GitHub Actions to deploy a web page to Raspberry Pi https://dev.to/hnrq/using-github-actions-to-deploy-a-web-page-to-raspberry-pi-46bi Using GitHub Actions to deploy a web page to Raspberry PiA couple of months ago I bought a Raspberry Pi Since then I ve been getting my hands dirty w SSH SCP Systemd DDNS and some other things I ve never done before This machine now hosts my Veloren server Join me at vlrn duckdns org and a landing page which after manually building and SCP ing a lot is now deployed through GitHub Actions And this is today s topic How to deploy a webpage to a RPi using GH Actions Before startingIf you have a dynamic IP address you ll have to setup a Dynamic DNS otherwise you d have to change the target IP address every time yours change It can happen monthly weekly or even daily This won t be covered here since the process differs based on your Router model However if you want a good and free Dynamic DNS service consider using and donating to duckdns org which is the one I currently use Preparing the RPiIn this case preparing is pretty straightforward you just need to install NGINX using apt install nginxAnd then start it systemctl enable nginxsystemctl start nginx Port forwardingPort forward RPi s port to external port Now when accessing the IP from a browser this screen will appear Also port forward the port of the RPi to anything other than This is the default SSH port so it s better not to expose it for security reasons Creating the ActionThis is a pretty simple step because of the great appleboy scp action The action will have only one job with two steps Building and pushing to Raspberry Pi BuildingThere s no secret here this is the build step name deployon push branches mainjobs deploy name Deploy runs on ubuntu latest steps uses actions checkout v uses actions setup node v with node version name Install amp build run npm i npm run build mv public index html public index nginx debian htmlThe only thing to be aware here is the last line where index html gets renamed to index nginx debian html This is done because on Debian NGINX uses var www html index nginx debian html Be aware that other distros can use a different directory and index naming PushingTo push the recently built artifact to the Raspberry Pi we ll use appleboy scp action To correctly set it up add the following secrets to your GitHub repo SSH HOST IP URL of the RPi SSH PORT The SSH port used by the RPi which was forwaded in the Port Forwarding section SSH USERNAME The RPi username to SCP to Since the files will be copied to var www html this user should have root privileges preferrably without asking for password SSH KEY An SSH Private Key generate it using either ssh keygen or an online generator Once you have everything created add the SSH Public key to ssh authorized keys Now it s time to create the Push step name Push to server uses appleboy scp action master with host secrets SSH HOST username secrets SSH USERNAME key secrets SSH KEY port secrets SSH PORT source public strip components target var www html There shouldn t be anything new other than strip components This setting removes the specified number of leading path elements without it we d push the content to var www html public instead of var www html The endNow you should have a fully functional GitHub action that automatically builds and pushes to a Raspberry Pi No more SCP ing for changing a single line or running npm run build inside the RPi 2022-05-03 22:11:12
海外TECH Engadget Rivian will receive up to $1.5 billion in state incentives to build Georgia production facility https://www.engadget.com/rivian-georgia-incentives-221339799.html?src=rss Rivian will receive up to billion in state incentives to build Georgia production facilityGeorgia will provide Rivian with up to billion in local incentives and tax credits in support of the automaker s plan to build a new manufacturing plant outside of Atlanta When Rivian announced late last year it would build its second production facility in Georgia the company said it would eventually employ more than workers at the facility and invest a total of billion into the project According to Reuters the startup has until to meet those goals in order to access all the incentives offered by the state s government The support package is notable for a few reasons When the company announced the facility it said it would pay for the expansion with funding it secured from its blockbuster billion IPO Amazon also has a percent stake in the company and an order for at least electric delivery vans But despite its strong financial backing Rivian has struggled to actually deliver cars to customers At the start of the year the company delayed the delivery of its mile RT trucks to It also announced and later reversed a price hike for RT and RS pre orders that led to a shareholder lawsuit 2022-05-03 22:13:39
ニュース BBC News - Home The papers: BP stokes windfall tax call and PM's bus 'rubbish' https://www.bbc.co.uk/news/blogs-the-papers-61315353?at_medium=RSS&at_campaign=KARANGA rubbish 2022-05-03 22:48:11
ニュース BBC News - Home Emma Raducanu out of Madrid Open after Anhelina Kalinina defeat https://www.bbc.co.uk/sport/tennis/61314518?at_medium=RSS&at_campaign=KARANGA anhelina 2022-05-03 22:27:54
北海道 北海道新聞 安全規程違反認める 社長、家族向け文書で 定点連絡も怠る 知床・観光船事故 https://www.hokkaido-np.co.jp/article/676955/ 知床半島 2022-05-04 07:19:42
北海道 北海道新聞 <卓上四季>サラエボの花 https://www.hokkaido-np.co.jp/article/676971/ 訃報 2022-05-04 07:15:02
北海道 北海道新聞 社長、会見発言を撤回 運航管理者「船長」→「私」 安全意識の欠如鮮明に 知床・観光船事故 https://www.hokkaido-np.co.jp/article/676972/ 運航管理者 2022-05-04 07:13:44
北海道 北海道新聞 桂田社長、「観光船協議会」会長を辞任 安全対策強化へ https://www.hokkaido-np.co.jp/article/676975/ 安全対策 2022-05-04 07:12:04
ビジネス 東洋経済オンライン 「不妊治療は当事者の問題」と思う人に欠けた視点 4月からの「保険適用」で何が変わったのか? | 不妊治療は “ひとごと” ですか? | 東洋経済オンライン https://toyokeizai.net/articles/-/580600?utm_source=rss&utm_medium=http&utm_campaign=link_back 体外受精 2022-05-04 08:00:00

コメント

このブログの人気の投稿

投稿時間:2021-06-17 05:05:34 RSSフィード2021-06-17 05:00 分まとめ(1274件)

投稿時間:2021-06-20 02:06:12 RSSフィード2021-06-20 02:00 分まとめ(3871件)

投稿時間:2020-12-01 09:41:49 RSSフィード2020-12-01 09:00 分まとめ(69件)