subiquity/examples/snaps
Michael Hudson-Doyle f1177788e1 snap switch subiquity to stable/ubuntu-XX.YY.Z
also support passing subquity-channel= on the kernel command line
2019-03-29 15:07:11 +13:00
..
v2-changes-7 add snapdconnection.post and fake data captured from a real refresh 2019-03-12 11:49:03 +13:00
v2-changes-8 snap switch subiquity to stable/ubuntu-XX.YY.Z 2019-03-29 15:07:11 +13:00
README.md Make the code for talking to snapd more generic 2019-03-04 16:18:57 +13:00
README.md~ update default snap store section and examples to server 2018-05-31 09:54:07 +12:00
v2-find-name=aws-cli.json Make the code for talking to snapd more generic 2019-03-04 16:18:57 +13:00
v2-find-name=canonical-livepatch.json Make the code for talking to snapd more generic 2019-03-04 16:18:57 +13:00
v2-find-name=conjure-up.json Make the code for talking to snapd more generic 2019-03-04 16:18:57 +13:00
v2-find-name=docker.json Make the code for talking to snapd more generic 2019-03-04 16:18:57 +13:00
v2-find-name=doctl.json Make the code for talking to snapd more generic 2019-03-04 16:18:57 +13:00
v2-find-name=etcd.json Make the code for talking to snapd more generic 2019-03-04 16:18:57 +13:00
v2-find-name=google-cloud-sdk.json Make the code for talking to snapd more generic 2019-03-04 16:18:57 +13:00
v2-find-name=heroku.json Make the code for talking to snapd more generic 2019-03-04 16:18:57 +13:00
v2-find-name=juju.json Make the code for talking to snapd more generic 2019-03-04 16:18:57 +13:00
v2-find-name=kata-containers.json Make the code for talking to snapd more generic 2019-03-04 16:18:57 +13:00
v2-find-name=keepalived.json Make the code for talking to snapd more generic 2019-03-04 16:18:57 +13:00
v2-find-name=microk8s.json Make the code for talking to snapd more generic 2019-03-04 16:18:57 +13:00
v2-find-name=minidlna-escoand.json Make the code for talking to snapd more generic 2019-03-04 16:18:57 +13:00
v2-find-name=mosquitto.json Make the code for talking to snapd more generic 2019-03-04 16:18:57 +13:00
v2-find-name=nextcloud.json Make the code for talking to snapd more generic 2019-03-04 16:18:57 +13:00
v2-find-name=postgresql10.json Make the code for talking to snapd more generic 2019-03-04 16:18:57 +13:00
v2-find-name=powershell.json Make the code for talking to snapd more generic 2019-03-04 16:18:57 +13:00
v2-find-name=prometheus.json Make the code for talking to snapd more generic 2019-03-04 16:18:57 +13:00
v2-find-name=rocketchat-server.json Make the code for talking to snapd more generic 2019-03-04 16:18:57 +13:00
v2-find-name=sabnzbd.json Make the code for talking to snapd more generic 2019-03-04 16:18:57 +13:00
v2-find-name=slcli.json Make the code for talking to snapd more generic 2019-03-04 16:18:57 +13:00
v2-find-name=stress-ng.json Make the code for talking to snapd more generic 2019-03-04 16:18:57 +13:00
v2-find-name=wekan.json Make the code for talking to snapd more generic 2019-03-04 16:18:57 +13:00
v2-find-name=wormhole.json Make the code for talking to snapd more generic 2019-03-04 16:18:57 +13:00
v2-find-section=server.json Make the code for talking to snapd more generic 2019-03-04 16:18:57 +13:00
v2-find-select=refresh.json add refresh sample data that shows an update for subiquity 2019-03-12 11:49:03 +13:00

README.md

Sample snap data

This directory contains canned responses from snapd's REST API that are used by default in dry-run mode. (You can pass --no-snaps-from-examples flag to talk to your local snapd instead). It was generated something like this:

$ curl --silent --unix-socket /var/run/snapd.socket a/v2/find?section=server | jq . > v2-find-section=server.json
$ for x in $(cat v2-find-section=server.json | jq -r '.result  | .[].name'); do curl --silent --unix-socket /var/run/snapd.socket a/v2/find?name=$x | jq . > v2-find-name=$x.json; done